2011-04-05 47 views

回答

0

您可以使用AlarmManager或TimerTask類在有限時間內顯示該號碼。 要刪除「確定」和「取消」按鈕,可以使用LayoutInflater。

1

您可以使用吐司:

Toast toast = Toast.makeText(this, getString(R.string.my_string, Toast.LENGTH_SHORT); 
toast.show(); 
3

試試這個代碼

"AlertDialog.Builder alertbox = new AlertDialog.Builder(MainActivity.this); 
alertbox.setMessage("Do You want to Save?"); 
alertbox.create(); 
alertbox.show();" 

它會幫助你...

0
  1. 自定義使用this tutorial對話框。
  2. 然後刪除XML中的該按鈕
  3. 然後添加處理程序 - this link - 並在一段時間後關閉對話框。

  1. 使用舉杯消息。
相關問題