这是一个非常古老的问题,但经过这么多努力,我仍然无法找到可能的解决方案。
目标
其实很简单。我想开发一些全屏应用程序(例如游戏),状态栏不会扩展,但用户会触摸屏幕。
该应用应该可以在Android 5.0,sdk 21(Lollipop)上运行。
到目前为止我做了什么
我找到了this post,它描述了如何用吸收触摸事件的CustomView
覆盖状态栏,但它对我不起作用......
我甚至改变了<uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW"/>
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:supportsRtl="true"
android:theme="@android:style/Theme.Holo.NoActionBar.Fullscreen">
<activity android:name=".MainActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
的大小,使其覆盖了整个屏幕,但它仍然不起作用,甚至无法覆盖我的按钮。
我使用的代码如下。在设备上运行时,按钮和状态栏都可以正常工作 - 没有任何内容被阻止。
我错过了什么吗?
码
在AndroidManifest.xml中:
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Hello World!"
android:id="@+id/text_show" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Click"
android:id="@+id/button_click"
android:onClick="changeText"
android:layout_centerVertical="true"
android:layout_centerHorizontal="true" />
在activity_main.xml中:
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
WindowManager manager = ((WindowManager) getApplicationContext()
.getSystemService(Context.WINDOW_SERVICE));
WindowManager.LayoutParams localLayoutParams = new WindowManager.LayoutParams();
localLayoutParams.type = WindowManager.LayoutParams.TYPE_SYSTEM_ERROR;
localLayoutParams.gravity = Gravity.TOP;
localLayoutParams.flags = WindowManager.LayoutParams.FLAG_NOT_FOCUSABLE|
// this is to enable the notification to recieve touch events
WindowManager.LayoutParams.FLAG_NOT_TOUCH_MODAL |
// Draws over status bar
WindowManager.LayoutParams.FLAG_LAYOUT_IN_SCREEN;
localLayoutParams.width = WindowManager.LayoutParams.MATCH_PARENT;
localLayoutParams.height = (int) (50 * getResources()
.getDisplayMetrics().scaledDensity);
localLayoutParams.format = PixelFormat.TRANSPARENT;
CustomViewGroup view = new CustomViewGroup(this);
manager.addView(view, localLayoutParams);
setContentView(R.layout.activity_main);
}
boolean key = false;
public void changeText(View view) {
TextView tv = (TextView) findViewById(R.id.text_show);
if (key) {
tv.setText("hahaha");
} else {
tv.setText("eroero");
}
key = ! key;
}
在MainActivity.java中:
public class CustomViewGroup extends ViewGroup {
public CustomViewGroup(Context context) {
super(context);
}
@Override
protected void onLayout(boolean changed, int l, int t, int r, int b) {
}
@Override
public boolean onInterceptTouchEvent(MotionEvent ev) {
Log.v("CustomViewGroup", "**********Intercepted");
return true;
}
}
在CustomViewGroup中(从上面的链接复制):
{{1}}
答案 0 :(得分:1)
最后我能做的最好是使用Android 5.0中引入的任务锁功能。
参考:startLockTask。
此方法的问题:
由于我不打算使用自助终端模式,所以我并不关心第2点。
第1点也是可以接受的,但有点烦人,因为每次调用onResume
时都会(并且应该)询问它。
这可以通过将服务应用程序设置为设备所有者来解决,该设备所有者向需要它的应用授予权限。但是用户必须这样做(她)自己(c.f。this answer),这是合理的,否则应用程序将能够完全绑架你的设备。