gpt4 book ai didi

android - AppBarLayout elevation 隐藏工具栏

转载 作者:塔克拉玛干 更新时间:2023-11-02 20:24:53 24 4
gpt4 key购买 nike

我正在尝试 disable the shadow below a transparent AppBarLayout/Toolbar.这是布局:

<android.support.design.widget.CoordinatorLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:background="#000">

<android.support.design.widget.AppBarLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:fitsSystemWindows="true"
android:background="@android:color/transparent"
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar">

<android.support.v7.widget.Toolbar
android:id="@+id/imagePreviewToolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize" />

</android.support.design.widget.AppBarLayout>

<include layout="@layout/content_image_preview" />
</android.support.design.widget.CoordinatorLayout>

我已经尝试过

app:elevation="0dp"

getSupportActionBar().setElevation(0);

但这使得 the UP arrow invisible .我也尝试删除 AppBarLayout 并仅使用工具栏,但问题仍然存在。

谁有解决办法?


编辑:

用这段代码替换 AppBarLayout + Toolbar 组合:

<android.support.v7.widget.Toolbar
android:id="@+id/imagePreviewToolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="@android:color/transparent"
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
app:popupTheme="@style/ThemeOverlay.AppCompat.Light"
app:elevation="0dp"/>

部分 解决了这个问题。现在只有当设备处于横向模式时,工具栏才会变得不可见! Android Studio 布局编辑器在两个方向上都很好地向我显示了工具栏,所以我真的不知道问题出在哪里..

最佳答案

经过一些尝试,我确实发现在这种情况下 ToolBar 应该是最后一个 View ,否则如果它是第一个,那么它后面的 View 将与它重叠,因为它的高度设置为 match_parent 所以尝试这样布局。

布局

<?xml version="1.0" encoding="utf-8"?>
<android.support.design.widget.CoordinatorLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent" >

<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_below="@+id/imagePreviewToolbar" >

<ImageView
android:id="@+id/image_preview"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@drawable/galacticos"
android:contentDescription="abc"
android:scaleType="fitCenter" />

<LinearLayout
android:id="@+id/actionBtns"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:orientation="horizontal"
android:padding="16dp" >

<ImageButton
android:id="@+id/setBackgroundBtn"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:background="@null"
android:contentDescription="abc"
android:src="@drawable/ic_launcher" />

<ImageButton
android:id="@+id/downloadBtn"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:background="?selectableItemBackgroundBorderless"
android:clickable="true"
android:contentDescription="abc"
android:src="@drawable/ic_launcher" />
</LinearLayout>
</RelativeLayout>

<android.support.v7.widget.Toolbar
android:id="@+id/imagePreviewToolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:fitsSystemWindows="true"
app:popupTheme="@style/ThemeOverlay.AppCompat.Light"
app:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar" />

并且不要忘记初始化这一切并将您的标题设置为 false 以仅显示工具栏后退按钮:

Activity 代码

@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.test);

Toolbar mToolBar = (Toolbar) findViewById(R.id.imagePreviewToolbar);
setSupportActionBar(mToolBar);
getSupportActionBar().setDisplayHomeAsUpEnabled(true);
getSupportActionBar().setDisplayShowTitleEnabled(false);
getSupportActionBar().setHomeButtonEnabled(true);

}

图片 enter image description here

希望我对你有帮助。

关于android - AppBarLayout elevation 隐藏工具栏,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37778309/

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