打印
[嵌入式linux]

迅为RK3399开发板Android8更改横屏状态下的NavigationBar位置

[复制链接]
1116|0
手机看帖
扫描二维码
随时随地手机跟帖
跳转到指定楼层
楼主
打开 android8 的源码
/home/topeet/itop-3399_8.1/frameworks/base/services/core/java/com/android/server/policy/目录下的
PhoneWindowManager.java 文件,修改为如下图所示:

然后修改 Android8 的源码
/home/topeet/itop-3399_8.1/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
目录下的 NavigationBarView.java 文件,修改为如下图所示:
private void updateCurrentView() {
// final int rot = mDisplay.getRotation();
int rot = mDisplay.getRotation();
for (int i=0; i<4; i++) {
mRotatedViews.setVisibility(View.GONE);
}
rot = Surface.ROTATION_90;
mCurrentView = mRotatedViews[rot];
mCurrentView.setVisibility(View.VISIBLE);
Log.e(TAG,"current rot:"+rot);
mNavigationInflaterView.setAlternativeOrder(rot == Surface.ROTATION_90);
for (int i = 0; i < mButtonDispatchers.size(); i++)
Log.w(TAG, "button"+i);
mButtonDispatchers.valueAt(i).setCurrentView(mCurrentView);
}
updateLayoutTransitionsEnabled();
mCurrentRotation = rot;
}

修改效果如下图所示,横屏状态下(作者使用的是 lvds 七寸屏),底部导航栏显示在屏
幕底部。

更多内容可以关注北京迅为RK3399开发板:




使用特权

评论回复

相关帖子

发新帖 我要提问
您需要登录后才可以回帖 登录 | 注册

本版积分规则

636

主题

716

帖子

1

粉丝