任何人都可以让我知道这个小部件是什么?请参阅相关小部件的附件。
当我点击收到的消息时,它是从消息传递应用程序启动的。
它将文本显示为应用程序名称。我搜索过“消息”一词,但没有效果。
谢谢,
答案 0 :(得分:11)
这不是Toast
消息;它是AlertDialog
public class yourActivity extends Activity {
public final static int DIALOG_ERROR = 1;
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
showDialog(DIALOG_ERROR); //this will call: onCreateDialog()
}
protected Dialog onCreateDialog(int id) {
Dialog dialog;
switch(id) {
case DIALOG_ERROR:
//create dialog
dialog = new AlertDialog.Builder(this).setMessage("Messaging").create();
break;
default:
//create a default dialog
dialog = null;
}
return dialog;
}
}
答案 1 :(得分:1)