編輯:關於android開發
1 AlertDialog dialog = new AlertDialog.Builder(this).create(); 2 dialog.setTitle("對話框"); 3 dialog.setIcon(R.drawable.ic_launcher); 4 dialog.setButton(DialogInterface.BUTTON_POSITIVE, "確認", new DialogInterface.OnClickListener() { 5 6 @Override 7 public void onClick(DialogInterface dialog, int which) { 8 String s = data.get(pos); 9 10 data.remove(pos); 11 data.add(0, s); 12 13 mAdapter.notifyDataSetChanged(); 14 15 Toast.makeText(getApplicationContext(), "已確認!", 0).show(); 16 } 17 }); 18 19 dialog.setButton(DialogInterface.BUTTON_NEGATIVE, "取消", new DialogInterface.OnClickListener() { 20 21 @Override 22 public void onClick(DialogInterface dialog, int which) { 23 String s = data.get(pos); 24 25 Toast.makeText(getApplicationContext(), "已取消!", 0).show(); 26 } 27 }); 28 dialog.show();
Android6.0系統增加那些新特性 北京時間9月30日凌晨在美國舊金山舉行2015年秋季新品發布會。在發布會上代號為“Marshmallow(棉花糖)
Android 撥號器的簡單實現,android撥號器實現功能實現:一個EditView 一個撥打按鈕,輸入號碼跳轉到撥號界面 界面布局:activity_call.xm
Android Studio同時打開多個項目,androidstudioAndroid Studio的默認設置是打開第二個項目時,第一個項目就被自動關閉了,如果要同時打開
Linux內核系列—操作系統開發之進入32位保護模式,linux保護模式源碼如下: ; ========================================
伴隨ListView、RecyclerView、ScrollView滾動