mirror of
https://github.com/He4eT/yamf_launcher.git
synced 2026-05-05 01:47:24 +00:00
Background and text color can now be changed
This commit is contained in:
parent
8953202be9
commit
dfc08513f5
11 changed files with 209 additions and 38 deletions
|
|
@ -1,6 +1,30 @@
|
|||
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:app="http://schemas.android.com/apk/res-auto">
|
||||
|
||||
<PreferenceCategory
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
app:allowDividerAbove="false"
|
||||
app:title="Colors">
|
||||
<ListPreference
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
app:defaultValue="#00000000"
|
||||
app:entries="@array/bg_options"
|
||||
app:entryValues="@array/bg_values"
|
||||
app:key="bgColor"
|
||||
app:title="Background Color"
|
||||
app:useSimpleSummaryProvider="true" />
|
||||
<ListPreference
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
app:defaultValue="#FFF3F3F3"
|
||||
app:entries="@array/color_options"
|
||||
app:entryValues="@array/color_values"
|
||||
app:key="textColor"
|
||||
app:title="Text Color"
|
||||
app:useSimpleSummaryProvider="true" />
|
||||
</PreferenceCategory>
|
||||
<PreferenceCategory
|
||||
app:allowDividerAbove="false"
|
||||
app:title="Alignment">
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue