有没有办法在Android上保留状态栏,同时禁用你可以用它做的所有交互,比如把它拉下来?我希望保留此栏提供的信息,但我不希望用户与之互动。
答案 0 :(得分:1)
这是我喜欢使用的方法。您可以从方法中解开它并将其放在基本Activity中。 iirc,我也是从StackOverflow那里得到的,但是我没有注意到它,所以我不确定原帖是什么。
它基本上做的是在顶部栏上放置一个透明覆盖,拦截所有触摸事件。到目前为止,它对我来说很好,看看它对你有用。
您可能需要将此行放在AndroidManifest中:
<uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW" />
我在我的项目中有它,但我不记得是否因为这个或其他原因。如果您收到权限错误,请将其添加到。
WindowManager manager;
CustomViewGroup lockView;
public void lock(Activity activity) {
//lock top notification bar
manager = ((WindowManager) activity.getApplicationContext()
.getSystemService(Context.WINDOW_SERVICE));
WindowManager.LayoutParams topBlockParams = new WindowManager.LayoutParams();
topBlockParams.type = WindowManager.LayoutParams.TYPE_SYSTEM_ERROR;
topBlockParams.gravity = Gravity.TOP;
topBlockParams.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;
topBlockParams.width = WindowManager.LayoutParams.MATCH_PARENT;
topBlockParams.height = (int) (50 * activity.getResources()
.getDisplayMetrics().scaledDensity);
topBlockParams.format = PixelFormat.TRANSPARENT;
lockView = new CustomViewGroup(activity);
manager.addView(lockView, topBlockParams);
}
和CustomViewGroup是
private class CustomViewGroup extends ViewGroup {
Context context;
public CustomViewGroup(Context context) {
super(context);
this.context = context;
}
@Override
protected void onLayout(boolean changed, int l, int t, int r, int b) {
}
@Override
public boolean onInterceptTouchEvent(MotionEvent ev) {
Log.i("StatusBarBlocker", "intercepted by "+ this.toString());
return true;
}
}
另外!您还必须在活动结束时删除此视图,因为我认为即使在您终止应用程序后它仍将继续阻止屏幕。始终,始终始终将此调用onPause和onDestroy。
if (lockView!=null) {
if (lockView.isShown()) {
//unlock top
manager.removeView(lockView);
}
}