gpt4 book ai didi

android - Android导航栏下绘制图片

转载 作者:行者123 更新时间:2023-12-04 03:13:06 29 4
gpt4 key购买 nike

我正在尝试创建一个布局,其中我的 Root View 占据整个屏幕并绘制在状态/导航栏下方。一切正常,直到我有一个高大的弹出窗口(图中的那个有 60 个项目)。窗口延伸到窗口下方很远,无法滚动。如何让我的布局在导航栏下延伸,而不允许弹出窗口延伸到屏幕之外?

罪魁祸首是

getWindow().addFlags(WindowManager.LayoutParams.FLAG_LAYOUT_NO_LIMITS);

问题是没有那个标志,我似乎无法在导航栏下绘制我的 View 。相反,我只能设置 android:windowBackground(显示为绿色)。

这是我正在使用的布局:

<android.support.constraint.ConstraintLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/colorAccent"
android:fitsSystemWindows="false"
tools:context="com.example.fullscreendemo.MainActivity">

<TextView
android:id="@+id/text"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Hello World!"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toTopOf="parent"/>

<android.support.v7.widget.AppCompatSpinner
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:entries="@array/spinner_values"
android:clipChildren="true"
app:layout_constraintTop_toBottomOf="@+id/text"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"/>

<View
android:layout_width="0dp"
android:layout_height="48dp"
android:background="@drawable/bg_nav_bar"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"/>

</android.support.constraint.ConstraintLayout>

主要 Activity :

class MainActivity extends AppCompatActivity {
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
getWindow().getDecoreView().setSystemUiVisibility(
View.SYSTEM_UI_FLAG_LAYOUT_STABLE |
View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN);
getWindow().addFlags(WindowManager.LayoutParams.FLAG_LAYOUT_NO_LIMITS);
setContentView(R.layout.activity_main);
}
}

No limits set With limits

最佳答案

好吧,很明显,在发布这个之后我就明白发生了什么事。 Window.setFlags 的文档表示 FLAG_LAYOUT_IN_SCREENFLAG_LAYOUT_INSET_DECOR 将在调用 setContentViewgetDecoreView 时使用。是插图导致我的 Activity 底部“抬起”。我能够通过简单地删除我的 Activity 中的大部分代码并只留下

来避免所有这一切
getWindow().addFlags(WindowManager.LayoutParams.FLAG_LAYOUT_IN_SCREEN);

编辑当使用没有软导航栏的设备时,以上内容不足以适应所有设备使用:

private void setFullScreenFlags() {
getWindow().clearFlags(WindowManager.LayoutParams.FLAG_LAYOUT_INSET_DECOR);
getWindow().addFlags(WindowManager.LayoutParams.FLAG_LAYOUT_IN_SCREEN);
if (!hasSoftNavigationBar()) {
getWindow().getDecorView().setSystemUiVisibility(View.SYSTEM_UI_FLAG_LAYOUT_STABLE |
View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN);
}
AndroidBug5497Workaround.assistActivity(this);
}

private boolean hasSoftNavigationBar() {
Display display = getWindowManager().getDefaultDisplay();
Point realSize = new Point();
Point displaySize = new Point();

display.getRealSize(realSize);
display.getSize(displaySize);
return !realSize.equals(displaySize);
}

关于android - Android导航栏下绘制图片,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43352842/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com