原本代码:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="40dp"
android:layout_height="wrap_content"
android:orientation="vertical"
xmlns:app="http://schemas.android.com/apk/res-auto">
<FrameLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<androidx.cardview.widget.CardView
android:id="@+id/card_icon"
android:elevation="0dp"
android:layout_width="30dp"
android:layout_height="30dp"
app:cardCornerRadius="45dp">
<ImageView
android:layout_width="30dp"
android:layout_height="30dp"
android:src="@drawable/tongji"/>
</androidx.cardview.widget.CardView>
<ImageView
android:id="@+id/more_icon"
android:elevation="1dp"
android:layout_width="20dp"
android:layout_height="10dp"
android:layout_gravity="bottom||end"
android:src="@color/money_red"/>
</FrameLayout>
</LinearLayout>
问题:
card_icon 始终在more_icon之上,但是按照FrameLayout 的特性,最后添加的应该在最上面一层显示。
原因:
CardView 默认会生成阴影效果,这会使其看起来比其他控件高出一层。可以通过 app:elevation 属性或 CardView.setCardElevation() 方法调整 CardView 的高度。
修改后代码:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="40dp"
android:layout_height="wrap_content"
android:orientation="vertical"
xmlns:app="http://schemas.android.com/apk/res-auto">
<FrameLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<androidx.cardview.widget.CardView
android:id="@+id/card_icon"
android:elevation="0dp"
android:layout_width="30dp"
android:layout_height="30dp"
app:cardCornerRadius="45dp">
<ImageView
android:layout_width="30dp"
android:layout_height="30dp"
android:src="@drawable/tongji"/>
</androidx.cardview.widget.CardView>
<ImageView
android:id="@+id/more_icon"
android:elevation="2dp"
android:layout_width="20dp"
android:layout_height="10dp"
android:layout_gravity="bottom||end"
android:src="@color/money_red"/>
</FrameLayout>
</LinearLayout>