2013-02-07 67 views
1

我試圖在一個教程階段創建一個通知(提示用戶點擊一個按鈕或指示其功能)。我(很粗糙)樣機是這樣:浮動通知對話框Android

enter image description here

理想的情況下,它會浮在活動,也許停留2-3秒(或單擊駁回類型的動作)。

我不認爲這會適用於吐司(因爲它不能指向任何東西)。另外,如果我不想讓它消失,只需點擊即可消除(通過單擊它指向的ImageButton或Notif本身),我不能用烤麪包片做到這一點。

對話框也不起作用。

這是如何實現的?

+0

這幾天我看到不少Android應用都這樣做。想知道它是如何工作的!不知道你是否在其他地方找到答案! – icarus74

回答

0

我想你可以嘗試使用警報對話框?

new AlertDialog.Builder(this) 
.setTitle("your title") 
.setMessage("message you want to show to the user") 
.setPositiveButton("Settings",new DialogInterface.OnClickListener() { 

public void onClick(DialogInterface dialog,int which) { 
//your action to dismiss this dialog 

}).show(); 
+0

我不希望它在屏幕的中心,我不想要按鈕。還是)感謝你的建議。 – Kgrover