<ref1 : 日本語 > 


<ref2 : 한국어>

Posted by tenn
,

debuggable


(getApplicationInfo().flags & ApplicationInfo.FLAG_DEBUGGABLE)  

// debuggable가 false일 경우 0


<ref>


Posted by tenn
,

[Android] AlertDialog tip

Android 2012. 9. 18. 15:02



표시 메세지 개행. ¥마크로는 안되고 역슬래시 잘 써야됨.


alertDiag.setMessage("ブラウザで開きます。"+"\n"+"よろしいですか。");


타이틀 표시하지 않기.


alertDiag.setTitle(null);  //타이틀영역자체가 표시 되지 않음.


Posted by tenn
,