This commit is contained in:
2026-05-20 17:51:44 +08:00
parent 246b39ca1a
commit e6a3c1605f
9 changed files with 77 additions and 29 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

View File

@@ -21,34 +21,66 @@
android:layout_height="1dp"
android:background="#EEEEEE" />
<TextView
android:id="@+id/tvChinese"
<LinearLayout
android:id="@+id/llChinese"
android:layout_width="match_parent"
android:layout_height="56dp"
android:gravity="center"
android:text="@string/chinese"
android:textColor="@color/black"
android:textSize="16sp"
android:layout_height="80dp"
android:orientation="horizontal"
android:gravity="center_vertical"
android:paddingStart="16dp"
android:paddingEnd="16dp"
android:background="?attr/selectableItemBackground"
android:clickable="true"
android:focusable="true" />
android:focusable="true">
<ImageView
android:layout_width="50dp"
android:layout_height="50dp"
android:src="@drawable/chinexe"
android:scaleType="centerInside" />
<TextView
android:id="@+id/tvChinese"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/chinese"
android:textColor="@color/black"
android:textSize="18sp"
android:layout_marginStart="16dp" />
</LinearLayout>
<View
android:layout_width="match_parent"
android:layout_height="1dp"
android:background="#EEEEEE" />
<TextView
android:id="@+id/tvEnglish"
<LinearLayout
android:id="@+id/llEnglish"
android:layout_width="match_parent"
android:layout_height="56dp"
android:gravity="center"
android:text="@string/english"
android:textColor="@color/black"
android:textSize="16sp"
android:layout_height="80dp"
android:orientation="horizontal"
android:gravity="center_vertical"
android:paddingStart="16dp"
android:paddingEnd="16dp"
android:background="?attr/selectableItemBackground"
android:clickable="true"
android:focusable="true" />
android:focusable="true">
<ImageView
android:layout_width="50dp"
android:layout_height="50dp"
android:src="@drawable/english"
android:scaleType="centerInside" />
<TextView
android:id="@+id/tvEnglish"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/english"
android:textColor="@color/black"
android:textSize="18sp"
android:layout_marginStart="16dp" />
</LinearLayout>
<View
android:layout_width="match_parent"
@@ -67,4 +99,4 @@
android:clickable="true"
android:focusable="true" />
</LinearLayout>
</LinearLayout>

View File

@@ -62,6 +62,8 @@
<string name="profile">个人</string>
<string name="admin_user">管理者</string>
<string name="normal_user">普通用户</string>
<string name="my_family_admin">%s管理员</string>
<string name="family_member">%s成员</string>
<!-- Home Menu -->
<string name="my_devices">我的设备</string>

View File

@@ -97,6 +97,8 @@
<string name="switch_family">Switch Family</string>
<string name="current_family">Current Family</string>
<string name="my_family">My Family</string>
<string name="my_family_admin">%s (Admin)</string>
<string name="family_member">%s (Member)</string>
<string name="add_family">Add Family</string>
<string name="family_name">Family Name</string>
<string name="enter_family_name">Enter family name</string>