gpt4 book ai didi

java - 如何在 Material 设计世界中创建主/细节

转载 作者:行者123 更新时间:2023-12-02 10:41:09 28 4
gpt4 key购买 nike

如何将标高添加到主视图/详细 View 的详细信息 Pane 中,以在其下方提供阴影,同时定位为部分覆盖工具栏(如下面的底部图片)?我尝试使用 android:elevation="4dp" 但这对我不起作用。

XML 布局

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">

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

<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"

android:layout_width="match_parent"
android:layout_height="match_parent"
android:baselineAligned="false"
android:divider="@drawable/divider_vertical"
android:orientation="horizontal"
android:showDividers="middle">

<RelativeLayout
android:id="@+id/master_container"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"/>

<FrameLayout
android:id="@+id/detail_container"
android:elevation="4dp"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="3"/>
</LinearLayout>
</LinearLayout>

当前钻孔结果 enter image description here

预期结果 enter image description here

主工具栏下的项目

<RelativeLayout
android:id="@+id/master_container"
android:layout_width="0dp"
android:layout_height="match_parent"
app:layout_constraintHorizontal_weight="2"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintEnd_toStartOf="@+id/divider"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintTop_toBottomOf="@+id/masterToolbar" />

最佳答案

这看起来像是一个有点复杂的布局,特别是考虑到搜索操作栏图标与“主”列的最右边缘对齐。

我怀疑这在功能上是一个FrameLayout(或子类),它持有一个水平LinearLayout,其中“详细信息” Pane 作为CardView(带有0dp 角半径)覆盖在其余内容上。这是一个快速模板:

<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout 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">

<androidx.appcompat.widget.Toolbar
android:id="@+id/masterToolbar"
android:layout_width="0dp"
android:layout_height="?actionBarSize"
android:background="?colorPrimary"
app:layout_constraintEnd_toStartOf="@+id/detailBackgroundToolbar"
app:layout_constraintHorizontal_weight="2"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />

<androidx.appcompat.widget.Toolbar
android:id="@+id/detailBackgroundToolbar"
android:layout_width="0dp"
android:layout_height="?actionBarSize"
android:background="?colorPrimary"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintHorizontal_weight="3"
app:layout_constraintStart_toEndOf="@+id/masterToolbar"
app:layout_constraintTop_toTopOf="parent" />

<View
android:id="@+id/divider"
android:layout_width="1dp"
android:layout_height="0dp"
android:background="#aaa"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintStart_toEndOf="@+id/masterToolbar"
app:layout_constraintTop_toBottomOf="@+id/masterToolbar" />

<View
android:layout_width="0dp"
android:layout_height="0dp"
android:background="#eee"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toEndOf="@+id/divider"
app:layout_constraintTop_toBottomOf="@+id/detailBackgroundToolbar" />

<androidx.cardview.widget.CardView
android:layout_width="0dp"
android:layout_height="0dp"
android:layout_margin="4dp"
app:cardCornerRadius="0dp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toEndOf="@+id/divider"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintWidth_percent="0.3">

<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">

<androidx.appcompat.widget.Toolbar
android:id="@+id/detailToolbar"
android:layout_width="match_parent"
android:layout_height="?actionBarSize"
android:background="#ccc"
app:title="Detail title" />

<TextView
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:background="#fff"
android:lineSpacingMultiplier="1.2"
android:padding="16dp"
android:text="@string/lorem_medium"
android:textColor="#1b1b1b"
android:textSize="16sp" />

</LinearLayout>

</androidx.cardview.widget.CardView>

</androidx.constraintlayout.widget.ConstraintLayout>

enter image description here

这里唯一真正的技巧是假的“detailBackgroundToolbar”工具栏,它的存在只是为了正确地间隔主工具栏(主工具栏需要在屏幕中间结束,以便操作图标位于正确的位置)。

关于java - 如何在 Material 设计世界中创建主/细节,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52909783/

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