因为galaxy tab没有状态栏,所以我不能对它应用正常的推送通知。有没有其他方法可以实现这一点,例如弹出对话框?
答案 0 :(得分: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();