Files
SecurityDefenseDevice/app/src/main/res/layout/dialog_language.xml
2026-05-08 16:39:15 +08:00

71 lines
2.2 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@drawable/bg_white"
android:orientation="vertical"
android:padding="16dp">
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:text="@string/language_settings"
android:textColor="@color/black"
android:textSize="18sp"
android:textStyle="bold"
android:paddingBottom="16dp" />
<View
android:layout_width="match_parent"
android:layout_height="1dp"
android:background="#EEEEEE" />
<TextView
android:id="@+id/tvChinese"
android:layout_width="match_parent"
android:layout_height="56dp"
android:gravity="center"
android:text="@string/chinese"
android:textColor="@color/black"
android:textSize="16sp"
android:background="?attr/selectableItemBackground"
android:clickable="true"
android:focusable="true" />
<View
android:layout_width="match_parent"
android:layout_height="1dp"
android:background="#EEEEEE" />
<TextView
android:id="@+id/tvEnglish"
android:layout_width="match_parent"
android:layout_height="56dp"
android:gravity="center"
android:text="@string/english"
android:textColor="@color/black"
android:textSize="16sp"
android:background="?attr/selectableItemBackground"
android:clickable="true"
android:focusable="true" />
<View
android:layout_width="match_parent"
android:layout_height="1dp"
android:background="#EEEEEE" />
<TextView
android:id="@+id/tvCancel"
android:layout_width="match_parent"
android:layout_height="56dp"
android:gravity="center"
android:text="@string/cancel"
android:textColor="@color/gray"
android:textSize="16sp"
android:background="?attr/selectableItemBackground"
android:clickable="true"
android:focusable="true" />
</LinearLayout>