Galaxy Tabにはステータスバーがなかったため、通常のプッシュ通知を適用できません。ダイアログをポップアウトするなど、これを達成する他の方法はありますか?
質問する
106 次
1 に答える
1
ステータスバーを本当に避けたい場合(GalaxyTabにはステータスバーがあります!)、すでに述べたように、単純にalertDialogを使用できます。
AlertDialog alertDialog = new AlertDialog.Builder(this).create();
alertDialog.setTitle("Reset...");
alertDialog.setMessage("Are you sure?");
alertDialog.setButton("OK", new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int which) {
// here you can add functions
}
});
alertDialog.setIcon(R.drawable.icon);
alertDialog.show();
于 2012-06-18T10:31:25.130 に答える