我正在尝试创建一个布局,其中我的根视图占据整个屏幕并在状态/导航栏下绘制。一切都很顺利,直到我有一个高大的弹出窗口(图像中的一个有60个项目)。窗口远远低于窗口,无法滚动。如何让我的布局扩展到导航栏下,而不允许弹出窗口延伸到屏幕之外?
罪魁祸首是
getWindow().addFlags(WindowManager.LayoutParams.FLAG_LAYOUT_NO_LIMITS);
问题是如果没有那个标志,我似乎无法在导航栏下绘制我的视图。相反,我只能设置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>
主要活动:
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);
}
}
答案 0 :(得分:0)
好的,在发布之后就这么清楚我知道发生了什么。 Window.setFlags的文档说明在调用FLAG_LAYOUT_IN_SCREEN
或FLAG_LAYOUT_INSET_DECOR
时将使用setContentView
和getDecoreView
。这是导致我的活动的底部的插入物#34;提升&#34;。我能够通过简单地删除活动中的大部分代码而只留下
getWindow().addFlags(WindowManager.LayoutParams.FLAG_LAYOUT_IN_SCREEN);
EDIT 使用没有软导航栏的设备时,上述内容不足以容纳所有设备使用:
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);
}