mirror of
https://github.com/He4eT/yamf_launcher.git
synced 2026-05-05 09:57:26 +00:00
Added an option to reset all preferences and implemented a different popup for selecting preferences. Also fixed a context menu bug.
This commit is contained in:
parent
f37393157b
commit
be4dd79e89
11 changed files with 309 additions and 90 deletions
|
|
@ -88,6 +88,7 @@
|
|||
android:background="#A7000000"
|
||||
android:foreground="@drawable/app_action_foreground"
|
||||
android:paddingVertical="3dp"
|
||||
android:singleLine="true"
|
||||
android:text="@string/info"
|
||||
android:textAlignment="center"
|
||||
android:textAppearance="@android:style/TextAppearance.DeviceDefault"
|
||||
|
|
@ -102,6 +103,7 @@
|
|||
android:background="#A7000000"
|
||||
android:foreground="@drawable/app_action_foreground"
|
||||
android:paddingVertical="3dp"
|
||||
android:singleLine="true"
|
||||
android:text="@string/uninstall"
|
||||
android:textAlignment="center"
|
||||
android:textAppearance="@android:style/TextAppearance.DeviceDefault"
|
||||
|
|
@ -116,6 +118,7 @@
|
|||
android:background="#A7000000"
|
||||
android:foreground="@drawable/app_action_foreground"
|
||||
android:paddingVertical="3dp"
|
||||
android:singleLine="true"
|
||||
android:text="@string/rename"
|
||||
android:textAlignment="center"
|
||||
android:textAppearance="@android:style/TextAppearance.DeviceDefault"
|
||||
|
|
@ -130,6 +133,7 @@
|
|||
android:background="#A7000000"
|
||||
android:foreground="@drawable/app_action_foreground"
|
||||
android:paddingVertical="3dp"
|
||||
android:singleLine="true"
|
||||
android:text="@string/hide"
|
||||
android:textAlignment="center"
|
||||
android:textAppearance="@android:style/TextAppearance.DeviceDefault"
|
||||
|
|
@ -144,6 +148,7 @@
|
|||
android:background="#A7000000"
|
||||
android:foreground="@drawable/app_action_foreground"
|
||||
android:paddingVertical="3dp"
|
||||
android:singleLine="true"
|
||||
android:text="@string/close"
|
||||
android:textAlignment="center"
|
||||
android:textAppearance="@android:style/TextAppearance.DeviceDefault"
|
||||
|
|
|
|||
13
app/src/main/res/layout/preference_spinner.xml
Normal file
13
app/src/main/res/layout/preference_spinner.xml
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:layout_width="0dp"
|
||||
android:layout_height="0dp"
|
||||
android:visibility="invisible">
|
||||
|
||||
<Spinner
|
||||
android:id="@+id/preferenceOptions"
|
||||
android:layout_width="0dp"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_weight="1"
|
||||
android:spinnerMode="dialog" />
|
||||
</LinearLayout>
|
||||
Loading…
Add table
Add a link
Reference in a new issue