Split play and other version

This commit is contained in:
世界
2023-11-09 13:05:56 +08:00
parent d10c6ebd7e
commit d45e2af1c2
8 changed files with 154 additions and 65 deletions

View File

@@ -16,17 +16,20 @@
<com.google.android.material.card.MaterialCardView
android:id="@+id/appCenterCard"
android:id="@+id/appSettingsCard"
style="?attr/materialCardViewElevatedStyle"
android:layout_width="match_parent"
android:layout_height="wrap_content">
android:layout_height="wrap_content"
android:layout_marginTop="16dp">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:padding="16dp">
android:paddingStart="16dp"
android:paddingTop="16dp"
android:paddingEnd="16dp"
android:paddingBottom="8dp">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
@@ -40,7 +43,7 @@
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="8dp"
android:hint="@string/check_update">
android:hint="@string/check_update_atomic">
<AutoCompleteTextView
android:layout_width="match_parent"
@@ -51,6 +54,20 @@
</com.google.android.material.textfield.TextInputLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center_vertical|end"
android:orientation="horizontal">
<Button
android:id="@+id/checkUpdateButton"
style="@style/Widget.Material3.Button.TextButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/check_update" />
</LinearLayout>
</LinearLayout>
</com.google.android.material.card.MaterialCardView>