Android 高度在 LinearLayout 中不起作用 Android
Android Elevation not working in LinearLayout Android
我有线性布局,里面有回收视图。我想要高程和角半径,但它不能正常工作。有人可以告诉我我做错了什么吗?
MainLayout
<androidx.constraintlayout.widget.ConstraintLayout 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:paddingStart="16dp"
android:paddingEnd="16dp"
android:clipToPadding="false"
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:id="@+id/container"
style="@style/WhiteBox"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="14dp"
android:orientation="vertical"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/header">
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/recyclerView"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
</LinearLayout>
</androidx.constraintlayout.widget.ConstraintLayout>
RecyclerView 项目布局
<androidx.constraintlayout.widget.ConstraintLayout 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="wrap_content"
android:clipToPadding="false"
android:paddingStart="12dp"
android:paddingTop="16dp"
android:paddingBottom="16dp"
tools:ignore="RtlSymmetry">
.....more elements..
</androidx.constraintlayout.widget.ConstraintLayout>
样式
<style name="WhiteBox" >
<item name="android:background">@drawable/white_box_background</item>
<item name="android:elevation">8dp</item>
</style>
white_box_background
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<corners android:radius="7dp"/>
<solid android:color="@android:color/white"/>
</shape>
正如下图显示我得到的,角落和阴影也没有正确显示
我想要的,即预期结果
我建议您改用卡片视图。
将依赖项添加到您的应用程序模块的 build.gradle
dependencies {
implementation "androidx.cardview:cardview:1.0.0"
}
将您当前的 LinearLayout 片段替换为
<androidx.cardview.widget.CardView
android:id="@+id/container"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="14dp"
android:layout_marginStart="8dp"
android:layout_marginEnd="8dp"
android:orientation="vertical"
app:cardCornerRadius="5dp"
android:elevation="2dp"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/header">
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/recyclerView"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
</androidx.cardview.widget.CardView>
有关 CardView 的详细信息,请参阅 https://developer.android.com/guide/topics/ui/layout/cardview#kts
尝试将 android:clipToPadding="false" 添加到持有提升视图的父 ConstraintLayout。有关更多详细信息,请参阅对此 的已接受答案。
我有线性布局,里面有回收视图。我想要高程和角半径,但它不能正常工作。有人可以告诉我我做错了什么吗?
MainLayout
<androidx.constraintlayout.widget.ConstraintLayout 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:paddingStart="16dp"
android:paddingEnd="16dp"
android:clipToPadding="false"
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:id="@+id/container"
style="@style/WhiteBox"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="14dp"
android:orientation="vertical"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/header">
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/recyclerView"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
</LinearLayout>
</androidx.constraintlayout.widget.ConstraintLayout>
RecyclerView 项目布局
<androidx.constraintlayout.widget.ConstraintLayout 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="wrap_content"
android:clipToPadding="false"
android:paddingStart="12dp"
android:paddingTop="16dp"
android:paddingBottom="16dp"
tools:ignore="RtlSymmetry">
.....more elements..
</androidx.constraintlayout.widget.ConstraintLayout>
样式
<style name="WhiteBox" >
<item name="android:background">@drawable/white_box_background</item>
<item name="android:elevation">8dp</item>
</style>
white_box_background
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<corners android:radius="7dp"/>
<solid android:color="@android:color/white"/>
</shape>
正如下图显示我得到的,角落和阴影也没有正确显示
我想要的,即预期结果
我建议您改用卡片视图。
将依赖项添加到您的应用程序模块的 build.gradle
dependencies {
implementation "androidx.cardview:cardview:1.0.0"
}
将您当前的 LinearLayout 片段替换为
<androidx.cardview.widget.CardView
android:id="@+id/container"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="14dp"
android:layout_marginStart="8dp"
android:layout_marginEnd="8dp"
android:orientation="vertical"
app:cardCornerRadius="5dp"
android:elevation="2dp"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/header">
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/recyclerView"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
</androidx.cardview.widget.CardView>
有关 CardView 的详细信息,请参阅 https://developer.android.com/guide/topics/ui/layout/cardview#kts
尝试将 android:clipToPadding="false" 添加到持有提升视图的父 ConstraintLayout。有关更多详细信息,请参阅对此