我想要做的就是在我的android應用程序中添加一個AlertDialog,我希望當它被點擊到Popup至少10條消息時。就像JavaScript中的Popup消息一樣。如何添加Alertdialog並鏈接到活動按鈕?
-3
A
回答
0
這裏是如何添加警告對話框中您的應用程序
SharedPreferences mPrefs;
final String welcomeScreenShownPref = "welcomeScreenShown";
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
mPrefs = PreferenceManager.getDefaultSharedPreferences(this);
// second argument is the default to use if the preference can't be found
Boolean welcomeScreenShown = mPrefs.getBoolean(welcomeScreenShownPref, false);
if (!welcomeScreenShown) {
// here you can launch another activity if you like
// the code below will display a popup
String whatsNewTitle = getResources().getString(R.string.whatsNewTitle);
String whatsNewText = getResources().getString(R.string.whatsNewText);
new AlertDialog.Builder(this).setIcon(android.R.drawable.ic_dialog_alert).setTitle(whatsNewTitle).setMessage(whatsNewText).setPositiveButton(
R.string.ok, new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int which) {
dialog.dismiss();
}
}).show();
SharedPreferences.Editor editor = mPrefs.edit();
editor.putBoolean(welcomeScreenShownPref, true);
editor.commit(); // Very important to save the preference
}
}
+0
請分解!這裏是我的按鈕的代碼<按鈕 的android:layout_width = 「WRAP_CONTENT」 機器人:layout_height = 「WRAP_CONTENT」 機器人:文本= 「戒律」 機器人:文字顏色= 「#ff0400」 機器人:textAllCaps = 「假」 機器人:id =「@ + id/Ten」 android:layout_centerHorizontal =「true」 android:layout_marginTop =「100dp」 android:onClick =「Ten」/>我在哪裏通過上面提供的代碼?在activity.xml中的類還是在哪裏? –
+0
謝謝大家,我已經得到了答案,現在如何將更多的消息添加到同一個對話框?我想點擊確定後,顯示另一條消息。像這樣。 –
相關問題
- 1. 如何添加鏈接到按鈕?
- 2. 如何添加一個鏈接到動態創建的按鈕?
- 3. 如何將Onclick函數添加到動態鏈接按鈕?
- 4. Android - 如何實現alertDialog動畫關閉到活動按鈕
- 5. Yii2 FullCalendar:如何添加鏈接按鈕
- 6. 動態添加鏈接按鈕
- 7. 添加鏈接按鈕事件動態
- 8. 從活動AlertDialog添加到片段ArrayAdapter
- 9. 添加鏈接到按鈕Javascript
- 10. Grails-將鏈接href添加到按鈕
- 11. 將按鈕添加到列表活動
- 12. ReactJs添加活動類到按鈕
- 13. JQuery將類添加到活動鏈接
- 14. 將樣式添加到活動鏈接?
- 15. Zend_Navigation將類添加到活動鏈接
- 16. 如何在alertdialog按鈕中添加按鈕點擊效果android
- 17. 鏈接按鈕以啓動活動
- 18. 如何動態添加單選按鈕到活動?
- 19. 從AlertDialog按鈕切換活動
- 20. 活動的AlertDialog樣式按鈕
- 21. 鏈接HTML按鈕的Java活動
- 22. 如何將不同的鏈接添加到一組按鈕?
- 23. 如何添加一個按鈕鏈接到Gmail郵件列表
- 24. 如何添加超鏈接到GridView中的AutoGeneratedEdit按鈕
- 25. 如何將href鏈接添加到切換按鈕?
- 26. 如何添加按鈕和鏈接到FullCalendar的單元
- 27. Javascript - 更改活動鏈接並將期間添加到鏈接的末尾
- 28. Magento:如何將活動的cms鏈接添加到Topmenu?
- 29. 如何將活動類添加到magento中的導航鏈接?
- 30. Android將鏈接添加到偏好設置活動 - 如何?
是什麼?你試試?到目前爲止顯示一些代碼。 http://stackoverflow.com/help/how-to-ask –