From 372d9618f5482e180de022f9b96c8eb0034ef2aa Mon Sep 17 00:00:00 2001
From: cloudroam <cloudroam>
Date: 星期三, 02 四月 2025 09:13:29 +0800
Subject: [PATCH] Merge remote-tracking branch 'origin/master'
---
app/src/main/res/layout/fragment_member_info_card.xml | 9 +++++++--
1 files changed, 7 insertions(+), 2 deletions(-)
diff --git a/app/src/main/res/layout/fragment_member_info_card.xml b/app/src/main/res/layout/fragment_member_info_card.xml
index 5f2d2a6..d1789c5 100644
--- a/app/src/main/res/layout/fragment_member_info_card.xml
+++ b/app/src/main/res/layout/fragment_member_info_card.xml
@@ -15,12 +15,15 @@
<!-- CardView 内部的内容 -->
<androidx.cardview.widget.CardView
+ android:id="@+id/memberCardCardView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="15dp"
android:layout_marginTop="10dp"
android:layout_marginRight="15dp"
- android:elevation="2dp"
+ android:elevation="0dp"
+ android:clipChildren="false"
+ android:clipToOutline="true"
app:cardCornerRadius="10dp"> <!-- 设置CardView的elevation -->
@@ -29,7 +32,9 @@
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="10dp"
- tools:ignore="MissingConstraints">
+ tools:ignore="MissingConstraints"
+ android:background="@android:color/transparent"
+ >
<ImageView
android:id="@+id/memberAvatarView"
--
Gitblit v1.9.3