gpt4 book ai didi

android - AppBarLayout 背景圆角

转载 作者:行者123 更新时间:2023-12-04 23:45:29 27 4
gpt4 key购买 nike

我正在为我的应用程序实现自定义 header 。在 AppBarLayout 中,我使用工具栏和我的自定义布局(名为 CustomHeader)。
我的 CustomHeader 有左下角和右下角圆角。为了正确显示,我设置了 android:background="@null" .
带有自定义标题的 appBarLayout 的布局:

<?xml version="1.0" encoding="utf-8"?>
<android.support.design.widget.AppBarLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/logoAppbarLayout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@null"
app:elevation="0dp">

<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="?attr/colorPrimary"
app:popupTheme="@style/AppTheme.PopupOverlay"
android:elevation="@dimen/_4sdp">

<android.support.v7.widget.AppCompatImageView
android:id="@+id/imgToolbarLogo"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:src="@drawable/ic_toolbar_logo" />
</android.support.v7.widget.Toolbar>

<CustomHeader
android:id="@+id/stepOneHeader"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="#00FFFFFF"
app:selected_step="1"/>

<ProgressBar
android:id="@+id/stepProgressBar"
style="@style/AppTheme.StepProgressBar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:progress="0"
android:visibility="gone" />

</android.support.design.widget.AppBarLayout>
这是我的 CustomHeader 的布局。为简洁起见,我省略了一些部分:
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout
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="wrap_content"
android:background="@drawable/header_bg">
<android.support.constraint.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="55dp"
android:layout_marginStart="@dimen/_18sdp"
android:layout_marginEnd="@dimen/_18sdp"
android:layout_marginTop="@dimen/_12sdp"
android:layout_marginBottom="@dimen/_12sdp">

<View
android:id="@+id/headerDivider"
android:layout_width="match_parent"
android:layout_height="@dimen/_2sdp"
android:background="@drawable/bg_divider_border"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />

...
</android.support.constraint.ConstraintLayout>
</FrameLayout>
这是CustomHeader的背景:
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<solid
android:width="2dp"
android:color="@color/colorPrimary" />
<corners
android:bottomLeftRadius="22dp"
android:bottomRightRadius="22dp"/>
</shape>
发生的事情是:无论我做什么,在 AppBarLayout 底部边框我总是有一个白色背景。图片如下:
White corners
请注意屏幕在标题之后继续。
我尝试了基于 SO 的 2 个解决方案:
ActionBar with rounded edges
How to make toolbar with rounded corners and elevation inside appbarlayout? Like this picture
我的问题与第二个链接几乎相同。
他们中的任何一个都为我工作。我只希望这个白色背景透明。

最佳答案

将此行添加到 AppBarLayout xml:
应用程序:海拔=“0dp”

关于android - AppBarLayout 背景圆角,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57578931/

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