하이브리드앱 alertDialog public void abc() { Button exitBtn;Button cancelBtn; LayoutInflater layout = getLayoutInflater();View v2 = layout.inflate(R.layout.custom_dialog, null);exitBtn = (Button) v2.findViewById(R.id.exitBtn);cancelBtn = (Button) v2.findViewById(R.id.cancelBtn); AlertDialog.Builder alertDialogBuilder = new AlertDialog.Builder(context); alertDialogBuilder.setView(v2); // 다이얼로그 생성AlertDialog alertDialog =.. 더보기 이전 1 ··· 31 32 33 34 35 36 37 ··· 172 다음