diff options
Diffstat (limited to 'app/src/main/res')
-rw-r--r-- | app/src/main/res/layout/preference_frost.xml | 64 | ||||
-rw-r--r-- | app/src/main/res/values/strings_preferences | 3 | ||||
-rw-r--r-- | app/src/main/res/xml/preferences_appearance.xml | 12 |
3 files changed, 79 insertions, 0 deletions
diff --git a/app/src/main/res/layout/preference_frost.xml b/app/src/main/res/layout/preference_frost.xml new file mode 100644 index 00000000..bcbed7f2 --- /dev/null +++ b/app/src/main/res/layout/preference_frost.xml @@ -0,0 +1,64 @@ +<?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:minHeight="?android:attr/listPreferredItemHeightSmall" + android:gravity="center_vertical" + android:paddingStart="?android:attr/listPreferredItemPaddingStart" + android:paddingEnd="?android:attr/listPreferredItemPaddingEnd" + android:background="?android:attr/activatedBackgroundIndicator" + android:clipToPadding="false" + android:baselineAligned="false"> + + <LinearLayout + android:id="@+id/icon_frame" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:layout_marginStart="-4dp" + android:minWidth="60dp" + android:gravity="start|center_vertical" + android:orientation="horizontal" + android:paddingEnd="12dp" + android:paddingTop="4dp" + android:paddingBottom="4dp"> + <ImageView + android:id="@+id/icon" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:maxWidth="48dp" + android:maxHeight="48dp" /> + </LinearLayout> + + <RelativeLayout + android:layout_width="0dp" + android:layout_height="wrap_content" + android:layout_weight="1" + android:paddingTop="16dp" + android:paddingBottom="16dp"> + + <TextView android:id="@+id/title" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:textAppearance="?android:attr/textAppearanceListItem" + android:ellipsize="marquee" /> + + <TextView android:id="@+id/summary" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:layout_below="@id/title" + android:layout_alignStart="@id/title" + android:textAppearance="?android:attr/textAppearanceListItemSecondary" + android:textColor="?android:attr/textColorSecondary" + android:maxLines="10" + android:ellipsize="end" /> + + </RelativeLayout> + + <CheckBox + android:id="@+id/checkbox" + android:visibility="gone" + android:paddingStart="16dp" + android:layout_width="wrap_content" + android:layout_height="wrap_content" /> + +</LinearLayout>
\ No newline at end of file diff --git a/app/src/main/res/values/strings_preferences b/app/src/main/res/values/strings_preferences new file mode 100644 index 00000000..5b10d8ae --- /dev/null +++ b/app/src/main/res/values/strings_preferences @@ -0,0 +1,3 @@ +<resources> + <string name="frost_pref_title_title">Settings</string> +</resources>
\ No newline at end of file diff --git a/app/src/main/res/xml/preferences_appearance.xml b/app/src/main/res/xml/preferences_appearance.xml new file mode 100644 index 00000000..23e179fd --- /dev/null +++ b/app/src/main/res/xml/preferences_appearance.xml @@ -0,0 +1,12 @@ +<?xml version="1.0" encoding="utf-8"?> +<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"> + <!--<com.afollestad.materialdialogs.prefs.MaterialDialogPreference--> + <!--android:dialogIcon="@mipmap/ic_launcher"--> + <!--android:dialogMessage="@string/preference_dialog_message"--> + <!--android:dialogTitle="Title Color"--> + <!--android:key="unused_key00"--> + <!--android:negativeButtonText="@android:string/cancel"--> + <!--android:positiveButtonText="@android:string/ok"--> + <!--android:summary="@string/material_dialog_pref_summary"--> + <!--android:title="@string/material_dialog_pref_title" />--> +</PreferenceScreen>
\ No newline at end of file |