gpt4 book ai didi

android - 使 View 与 AppBarLayout 重叠

转载 作者:行者123 更新时间:2023-11-30 00:27:04 24 4
gpt4 key购买 nike

我正在尝试显示全屏覆盖 View ,第一步是设置带有隐藏覆盖的 xml,然后在适当的时候显示它。这是我的布局:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/activity_main"
android:layout_width="match_parent"
android:layout_height="match_parent">

<android.support.design.widget.AppBarLayout
android:id="@+id/appBar"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="?attr/colorPrimary"/>
</android.support.design.widget.AppBarLayout>

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/appBar"
android:textColor="#FFFFFF"
android:text="Hello World!" />

<View
android:id="@+id/overlay"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:clickable="true"
android:background="#80FF0000"/>
</RelativeLayout>

结果如下:

enter image description here

我需要这样的结果:

enter image description here

所以,我成功地覆盖了除 AppBarLayout 之外的所有屏幕。如何让我的 View 放置在 AppBarLayout 之上而不是之后?

最佳答案

您应该在您的 Activity 中使用此代码:

public class MainActivity extends Activity {

@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
// If the Android version is lower than Jellybean, use this call to hide
// the status bar.
if (Build.VERSION.SDK_INT < 16) {
getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,
WindowManager.LayoutParams.FLAG_FULLSCREEN);
}
setContentView(R.layout.activity_main);
}
...

你可以按照这个官方的谷歌教程: https://developer.android.com/training/system-ui/status.html

关于android - 使 View 与 AppBarLayout 重叠,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45148054/

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