UI 만들 때 참고할 만한 것. http://android-developers.blogspot.com/2009/02/android-layout-tricks-1.html http://www.curious-creature.org/2009/02/25/android-layout-trick-2-include-to-reuse/ http://android-developers.blogspot.com/2009/03/android-layout-tricks-3-optimize-by.html 더보기 팝업창(Dialog) 간단한 popup창을 보여줌 Dialog dlg = new Dialog(context); dlg.setTitle(context.getResources().getString(R.string.notsupport)); dlg.setCanceledOnTouchOutside(true); // dialog 바깥쪽 클릭하면 사라짐 dlg.show(); 더보기 이전 1 ··· 4 5 6 7 8 9 10 ··· 40 다음