任何其他方式向galaxy tab发送通知?

时间:2012-06-18 10:19:32

标签: android dialog push-notification galaxy-tab

因为galaxy tab没有状态栏,所以我不能对它应用正常的推送通知。有没有其他方法可以实现这一点,例如弹出对话框?

1 个答案:

答案 0 :(得分:1)

如果你真的想避开状态栏(假设GalaxyTab确实有一个!)你可以简单地使用alertDialog,如你所说:

enter image description here

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();

http://www.wikihow.com/Show-Alert-Dialog-in-Android