当前位置: 代码迷 >> Android >> android4.0下, 怎么弹出关机 对话框
  详细解决方案

android4.0下, 怎么弹出关机 对话框

热度:369   发布时间:2016-05-01 12:15:07.0
android4.0下, 如何弹出关机 对话框?
android4.0下, 如何弹出关机 对话框?
  
android4.0下, 如何写代码弹出关机 对话框, 有确定和取消二个按钮, 点确定关机, 点取消退出关机.
------解决方案--------------------
ShutDownThread中修,好像默认是有的吧
------解决方案--------------------
Intent newIntent = new Intent(Intent.ACTION_SHUTDOWN);
newIntent.setFlags(..);  //调整参数, 可达到相应的效果.
startActivity(newIntent);

  相关解决方案