fix: QuTipDialog 图标和字体继续放大

图标区域 110→140dp,图标字号 50→65sp,标题 28→36sp,描述 20→24sp。

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
dongliang
2026-05-06 15:55:40 +09:30
parent 3ab6a94676
commit eb5fdd2d5f

View File

@@ -15,10 +15,10 @@
android:paddingStart="21dp" android:paddingStart="21dp"
android:paddingEnd="21dp"> android:paddingEnd="21dp">
<!-- 圆形图标背景(放大 85→110dp --> <!-- 圆形图标背景(140dp占屏幕宽度 ~44% -->
<FrameLayout <FrameLayout
android:layout_width="110dp" android:layout_width="140dp"
android:layout_height="110dp" android:layout_height="140dp"
android:layout_marginBottom="16dp"> android:layout_marginBottom="16dp">
<View <View
@@ -31,26 +31,26 @@
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="match_parent" android:layout_height="match_parent"
android:gravity="center" android:gravity="center"
android:textSize="50sp" /> android:textSize="65sp" />
</FrameLayout> </FrameLayout>
<!-- 标题(28sp --> <!-- 标题(36sp -->
<TextView <TextView
android:id="@+id/tipTitle" android:id="@+id/tipTitle"
android:layout_width="wrap_content" android:layout_width="wrap_content"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:textColor="@color/text_primary" android:textColor="@color/text_primary"
android:textSize="28sp" android:textSize="36sp"
android:textStyle="bold" /> android:textStyle="bold" />
<!-- 描述20sp可选 --> <!-- 描述24sp可选 -->
<TextView <TextView
android:id="@+id/tipDesc" android:id="@+id/tipDesc"
android:layout_width="wrap_content" android:layout_width="wrap_content"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:textColor="@color/text_secondary" android:textColor="@color/text_secondary"
android:textSize="20sp" android:textSize="24sp"
android:gravity="center" android:gravity="center"
android:lineSpacingMultiplier="1.4" android:lineSpacingMultiplier="1.4"
android:layout_marginTop="8dp" android:layout_marginTop="8dp"