Mercurial > cgi-bin > hgweb.cgi > SimpleResizer
annotate app/src/main/res/xml/root_preferences.xml @ 46:8205f3c17500 default tip
Tweak messages a little.
author | David Barts <n5jrn@me.com> |
---|---|
date | Wed, 14 Apr 2021 08:18:23 -0700 |
parents | 474ef75856c2 |
children |
rev | line source |
---|---|
15 | 1 <PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android" |
2 xmlns:app="http://schemas.android.com/apk/res-auto"> | |
3 | |
4 <ListPreference | |
5 android:id="@+id/scale_type" | |
24
474ef75856c2
Optimize for quality by default, now that it runs faster.
David Barts <n5jrn@me.com>
parents:
15
diff
changeset
|
6 android:defaultValue="quality" |
15 | 7 android:key="scale_type" |
8 android:title="@string/scale_type_title" | |
9 app:entries="@array/scale_type_titles" | |
10 app:entryValues="@array/scale_types" | |
11 app:title="@string/scale_type_title" | |
12 app:useSimpleSummaryProvider="true" /> | |
13 | |
14 <SeekBarPreference | |
15 android:id="@+id/jpeg_quality" | |
16 android:defaultValue="85" | |
17 android:key="jpeg_quality" | |
18 android:max="100" | |
19 android:title="@string/jpeg_quality_title" | |
20 app:defaultValue="85" | |
21 app:min="0" | |
22 app:showSeekBarValue="true" | |
23 app:title="@string/jpeg_quality_title" /> | |
24 | |
25 </PreferenceScreen> |