gpt4 book ai didi

具有相同 ActionBar 高度的 Android View

转载 作者:行者123 更新时间:2023-11-30 01:22:17 24 4
gpt4 key购买 nike

我正在尝试让 View (LinearLayout) 感觉像是 ActionBar 的扩展。顺便说一句,我正在使用 AppCompat 对象。

这是我的 xml:

<android.support.design.widget.CoordinatorLayoutt 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:fitsSystemWindows="true"
tools:context=".RegisterActivity">

<android.support.design.widget.AppBarLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:theme="@style/AppTheme.AppBarOverlay.Colored">

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

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

<include layout="@layout/content_register" />

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

现在是 content_register 布局:

<LinearLayout 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"
android:orientation="vertical"
app:layout_behavior="@string/appbar_scrolling_view_behavior">

<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@color/colorPrimary"
android:elevation="4dp"
android:orientation="vertical">

<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:padding="8dp"
android:text="text1"
android:textColor="@color/white" />

<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:padding="8dp"
android:text="text2"
android:textColor="@color/white" />

<View
android:layout_width="match_parent"
android:layout_height="1dp"
android:background="#40FFFFFF" />

<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:padding="8dp"
android:text="text3"
android:textColor="@color/white" />

</LinearLayout>


<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:padding="8dp"
android:text="insert awesome stuff here" />

</LinearLayout>

我想用下图表示的内容做什么: Pretended results

这就是我得到的。 Results so far

关于如何修复此布局的任何想法?我是否使用了错误的组件?

此外,我是否应该使用 CardView 进行带有 text1 2 3 的布局?

最佳答案

将其添加到样式中(适用于 Lolipop 之前的设备)

<item name="android:windowContentOverlay">@null</item>

在您的 AppBarLayout 中添加这一行

app:elevation="0dp"

关于具有相同 ActionBar 高度的 Android View,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36936700/

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