在接收消息广播的onReceive里,跳转到你要显示的界面。如: Intent intent = new Intent(arg0,MainActivity.class); intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK); arg0.startActivity(intent); 复制代码 在该activity的onCreate()方法里: super.onCreate(savedInstanceState); getWindow().addFlags(WindowManager.LayoutParams.FLAG_SHOW_WHEN_LOCKED|WindowManager.LayoutParams.FLAG_TURN_SCREEN_ON); setContentView(R.layout.activity_main); 复制代码 设置activity的theme属性: android:theme="@android:style/Theme.Wallpaper.NoTitleBar" 复制代码 上一篇Android Animation学习(二) ApiDemos解析:基本Animatiors使用 下一篇ImageView 等比例放大