-1
我正在製作一個android應用程序,用戶在其中輸入文本並單擊按鈕。點擊按鈕後會出現通知,通知應顯示用戶輸入的文字。如何將文本作爲輸入,然後在單擊按鈕生成的通知中顯示它?
我正在製作一個android應用程序,用戶在其中輸入文本並單擊按鈕。點擊按鈕後會出現通知,通知應顯示用戶輸入的文字。如何將文本作爲輸入,然後在單擊按鈕生成的通知中顯示它?
當按下按鈕獲取從EDITTEXT
文本在按鈕
的OnClick方法生成由下面的代碼的通知:
// build notification
String content = edtEditText.getText().toString();
Notification n = new Notification.Builder(this)
.setContentTitle("Title That you want")
.setContentText(content).build();
NotificationManager notificationManager =
(NotificationManager) getSystemService(NOTIFICATION_SERVICE);
notificationManager.notify(0, n);
參考此鏈接用於產生通知 http://www.vogella.com/tutorials/AndroidNotifications/article.html
Stackoverflow不會爲您編寫代碼。你有沒有試過跟着這個? https://developer.android.com/training/notify-user/build-notification.html – Ahmad