parent
8067cb3efb
commit
f2f6abf3b8
@ -1,125 +1,273 @@ |
|||||||
<?xml version="1.0" encoding="utf-8"?> |
<?xml version="1.0" encoding="utf-8"?> |
||||||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" |
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" |
||||||
|
xmlns:app="http://schemas.android.com/apk/res-auto" |
||||||
xmlns:tools="http://schemas.android.com/tools" |
xmlns:tools="http://schemas.android.com/tools" |
||||||
android:layout_width="match_parent" |
android:layout_width="match_parent" |
||||||
android:layout_height="wrap_content" |
android:layout_height="wrap_content" |
||||||
android:padding="16dp" |
android:orientation="vertical" |
||||||
android:orientation="vertical"> |
android:padding="16dp"> |
||||||
|
|
||||||
<io.legado.app.ui.widget.text.AccentTextView |
<io.legado.app.ui.widget.text.AccentTextView |
||||||
android:layout_width="wrap_content" |
android:layout_width="wrap_content" |
||||||
android:layout_height="wrap_content" |
android:layout_height="wrap_content" |
||||||
android:text="@string/header" /> |
android:text="@string/body_title" |
||||||
|
android:textSize="18sp" /> |
||||||
|
|
||||||
|
<RadioGroup |
||||||
|
android:id="@+id/rg_title_mode" |
||||||
|
android:layout_width="match_parent" |
||||||
|
android:layout_height="wrap_content" |
||||||
|
android:orientation="horizontal"> |
||||||
|
|
||||||
|
<RadioButton |
||||||
|
android:id="@+id/rb_title_mode1" |
||||||
|
android:layout_width="wrap_content" |
||||||
|
android:layout_height="wrap_content" |
||||||
|
android:padding="3dp" |
||||||
|
android:text="@string/title_left" /> |
||||||
|
|
||||||
|
<RadioButton |
||||||
|
android:id="@+id/rb_title_mode2" |
||||||
|
android:layout_width="wrap_content" |
||||||
|
android:layout_height="wrap_content" |
||||||
|
android:padding="3dp" |
||||||
|
android:text="@string/title_center" /> |
||||||
|
|
||||||
|
<RadioButton |
||||||
|
android:id="@+id/rb_title_mode3" |
||||||
|
android:layout_width="wrap_content" |
||||||
|
android:layout_height="wrap_content" |
||||||
|
android:padding="3dp" |
||||||
|
android:text="@string/title_hide" /> |
||||||
|
</RadioGroup> |
||||||
|
|
||||||
|
<io.legado.app.ui.widget.DetailSeekBar |
||||||
|
android:id="@+id/dsb_title_size" |
||||||
|
android:layout_width="match_parent" |
||||||
|
android:layout_height="wrap_content" |
||||||
|
android:padding="3dp" |
||||||
|
app:max="10" |
||||||
|
app:title="字号" /> |
||||||
|
|
||||||
|
<io.legado.app.ui.widget.DetailSeekBar |
||||||
|
android:id="@+id/dsb_title_top" |
||||||
|
android:layout_width="match_parent" |
||||||
|
android:layout_height="wrap_content" |
||||||
|
android:padding="3dp" |
||||||
|
app:max="100" |
||||||
|
app:title="上间距" /> |
||||||
|
|
||||||
|
<io.legado.app.ui.widget.DetailSeekBar |
||||||
|
android:id="@+id/dsb_title_bottom" |
||||||
|
android:layout_width="match_parent" |
||||||
|
android:layout_height="wrap_content" |
||||||
|
android:padding="3dp" |
||||||
|
app:max="100" |
||||||
|
app:title="下间距" /> |
||||||
|
|
||||||
|
<io.legado.app.ui.widget.text.AccentTextView |
||||||
|
android:id="@+id/tv_header_padding" |
||||||
|
android:layout_width="wrap_content" |
||||||
|
android:layout_height="wrap_content" |
||||||
|
android:text="@string/header" |
||||||
|
android:textSize="18sp" /> |
||||||
|
|
||||||
<LinearLayout |
<LinearLayout |
||||||
|
android:id="@+id/ll_header_show" |
||||||
android:layout_width="match_parent" |
android:layout_width="match_parent" |
||||||
android:layout_height="wrap_content" |
android:layout_height="wrap_content" |
||||||
android:orientation="horizontal" |
|
||||||
android:paddingLeft="12dp" |
|
||||||
android:gravity="center_vertical" |
android:gravity="center_vertical" |
||||||
|
android:orientation="horizontal" |
||||||
tools:ignore="RtlHardcoded,RtlSymmetry"> |
tools:ignore="RtlHardcoded,RtlSymmetry"> |
||||||
|
|
||||||
<TextView |
<TextView |
||||||
|
android:layout_width="0dp" |
||||||
|
android:layout_height="wrap_content" |
||||||
|
android:layout_weight="1" |
||||||
|
android:padding="6dp" |
||||||
|
android:text="@string/show_hide" /> |
||||||
|
|
||||||
|
<TextView |
||||||
|
android:id="@+id/tv_header_show" |
||||||
android:layout_width="wrap_content" |
android:layout_width="wrap_content" |
||||||
android:layout_height="wrap_content" |
android:layout_height="wrap_content" |
||||||
android:padding="4dp" |
android:padding="6dp" |
||||||
android:text="@string/left" /> |
tools:text="@string/show_hide" /> |
||||||
|
|
||||||
|
</LinearLayout> |
||||||
|
|
||||||
|
<LinearLayout |
||||||
|
android:id="@+id/ll_header_left" |
||||||
|
android:layout_width="match_parent" |
||||||
|
android:layout_height="wrap_content" |
||||||
|
android:gravity="center_vertical" |
||||||
|
android:orientation="horizontal" |
||||||
|
tools:ignore="RtlHardcoded,RtlSymmetry"> |
||||||
|
|
||||||
<TextView |
<TextView |
||||||
android:id="@+id/tv_header_left" |
|
||||||
android:layout_width="0dp" |
android:layout_width="0dp" |
||||||
android:layout_height="wrap_content" |
android:layout_height="wrap_content" |
||||||
android:layout_weight="1" /> |
android:layout_weight="1" |
||||||
|
android:padding="6dp" |
||||||
|
android:text="@string/left" /> |
||||||
|
|
||||||
<TextView |
<TextView |
||||||
|
android:id="@+id/tv_header_left" |
||||||
android:layout_width="wrap_content" |
android:layout_width="wrap_content" |
||||||
android:layout_height="wrap_content" |
android:layout_height="wrap_content" |
||||||
android:padding="4dp" |
android:padding="6dp" |
||||||
android:text="@string/middle" /> |
tools:text="@string/title" /> |
||||||
|
|
||||||
|
</LinearLayout> |
||||||
|
|
||||||
|
<LinearLayout |
||||||
|
android:id="@+id/ll_header_middle" |
||||||
|
android:layout_width="match_parent" |
||||||
|
android:layout_height="wrap_content" |
||||||
|
android:gravity="center_vertical" |
||||||
|
android:orientation="horizontal" |
||||||
|
tools:ignore="RtlHardcoded,RtlSymmetry"> |
||||||
|
|
||||||
<TextView |
<TextView |
||||||
android:id="@+id/tv_header_middle" |
|
||||||
android:layout_width="0dp" |
android:layout_width="0dp" |
||||||
android:layout_height="wrap_content" |
android:layout_height="wrap_content" |
||||||
android:layout_weight="1" /> |
android:layout_weight="1" |
||||||
|
android:padding="6dp" |
||||||
|
android:text="@string/middle" /> |
||||||
|
|
||||||
<TextView |
<TextView |
||||||
|
android:id="@+id/tv_header_middle" |
||||||
android:layout_width="wrap_content" |
android:layout_width="wrap_content" |
||||||
android:layout_height="wrap_content" |
android:layout_height="wrap_content" |
||||||
android:padding="4dp" |
android:padding="6dp" |
||||||
|
tools:text="@string/title" /> |
||||||
|
|
||||||
|
</LinearLayout> |
||||||
|
|
||||||
|
<LinearLayout |
||||||
|
android:id="@+id/ll_header_right" |
||||||
|
android:layout_width="match_parent" |
||||||
|
android:layout_height="wrap_content" |
||||||
|
android:gravity="center_vertical" |
||||||
|
android:orientation="horizontal" |
||||||
|
tools:ignore="RtlHardcoded,RtlSymmetry"> |
||||||
|
|
||||||
|
<TextView |
||||||
|
android:layout_width="0dp" |
||||||
|
android:layout_height="wrap_content" |
||||||
|
android:layout_weight="1" |
||||||
|
android:padding="6dp" |
||||||
android:text="@string/right" /> |
android:text="@string/right" /> |
||||||
|
|
||||||
<TextView |
<TextView |
||||||
android:id="@+id/tv_header_right" |
android:id="@+id/tv_header_right" |
||||||
android:layout_width="0dp" |
android:layout_width="wrap_content" |
||||||
android:layout_height="wrap_content" |
android:layout_height="wrap_content" |
||||||
android:layout_weight="1" /> |
android:padding="6dp" |
||||||
|
tools:text="@string/title" /> |
||||||
|
|
||||||
</LinearLayout> |
</LinearLayout> |
||||||
|
|
||||||
<io.legado.app.ui.widget.text.AccentTextView |
<io.legado.app.ui.widget.text.AccentTextView |
||||||
android:layout_width="wrap_content" |
android:layout_width="wrap_content" |
||||||
android:layout_height="wrap_content" |
android:layout_height="wrap_content" |
||||||
android:text="@string/footer" /> |
android:text="@string/footer" |
||||||
|
android:textSize="18sp" /> |
||||||
|
|
||||||
<LinearLayout |
<LinearLayout |
||||||
|
android:id="@+id/ll_footer_show" |
||||||
android:layout_width="match_parent" |
android:layout_width="match_parent" |
||||||
android:layout_height="wrap_content" |
android:layout_height="wrap_content" |
||||||
android:orientation="horizontal" |
|
||||||
android:paddingLeft="12dp" |
|
||||||
android:gravity="center_vertical" |
android:gravity="center_vertical" |
||||||
|
android:orientation="horizontal" |
||||||
tools:ignore="RtlHardcoded,RtlSymmetry"> |
tools:ignore="RtlHardcoded,RtlSymmetry"> |
||||||
|
|
||||||
<TextView |
<TextView |
||||||
android:layout_width="wrap_content" |
|
||||||
android:layout_height="wrap_content" |
|
||||||
android:padding="4dp" |
|
||||||
android:text="@string/left" /> |
|
||||||
|
|
||||||
<TextView |
|
||||||
android:id="@+id/tv_footer_left" |
|
||||||
android:layout_width="0dp" |
android:layout_width="0dp" |
||||||
android:layout_height="wrap_content" |
android:layout_height="wrap_content" |
||||||
android:layout_weight="1" /> |
android:layout_weight="1" |
||||||
|
android:padding="6dp" |
||||||
|
android:text="@string/show_hide" /> |
||||||
|
|
||||||
<TextView |
<TextView |
||||||
|
android:id="@+id/tv_footer_show" |
||||||
android:layout_width="wrap_content" |
android:layout_width="wrap_content" |
||||||
android:layout_height="wrap_content" |
android:layout_height="wrap_content" |
||||||
android:padding="4dp" |
android:padding="6dp" |
||||||
android:text="@string/middle" /> |
tools:text="@string/show_hide" /> |
||||||
|
|
||||||
|
</LinearLayout> |
||||||
|
|
||||||
|
<LinearLayout |
||||||
|
android:id="@+id/ll_footer_left" |
||||||
|
android:layout_width="match_parent" |
||||||
|
android:layout_height="wrap_content" |
||||||
|
android:gravity="center_vertical" |
||||||
|
android:orientation="horizontal" |
||||||
|
tools:ignore="RtlHardcoded,RtlSymmetry"> |
||||||
|
|
||||||
<TextView |
<TextView |
||||||
android:id="@+id/tv_footer_middle" |
|
||||||
android:layout_width="0dp" |
android:layout_width="0dp" |
||||||
android:layout_height="wrap_content" |
android:layout_height="wrap_content" |
||||||
android:layout_weight="1" /> |
android:layout_weight="1" |
||||||
|
android:padding="6dp" |
||||||
|
android:text="@string/left" /> |
||||||
|
|
||||||
<TextView |
<TextView |
||||||
|
android:id="@+id/tv_footer_left" |
||||||
android:layout_width="wrap_content" |
android:layout_width="wrap_content" |
||||||
android:layout_height="wrap_content" |
android:layout_height="wrap_content" |
||||||
android:padding="4dp" |
android:padding="6dp" |
||||||
android:text="@string/right" /> |
tools:text="@string/title" /> |
||||||
|
|
||||||
|
</LinearLayout> |
||||||
|
|
||||||
|
<LinearLayout |
||||||
|
android:id="@+id/ll_footer_middle" |
||||||
|
android:layout_width="match_parent" |
||||||
|
android:layout_height="wrap_content" |
||||||
|
android:gravity="center_vertical" |
||||||
|
android:orientation="horizontal" |
||||||
|
tools:ignore="RtlHardcoded,RtlSymmetry"> |
||||||
|
|
||||||
<TextView |
<TextView |
||||||
android:id="@+id/tv_footer_right" |
|
||||||
android:layout_width="0dp" |
android:layout_width="0dp" |
||||||
android:layout_height="wrap_content" |
android:layout_height="wrap_content" |
||||||
android:layout_weight="1" /> |
android:layout_weight="1" |
||||||
|
android:padding="6dp" |
||||||
|
android:text="@string/middle" /> |
||||||
|
|
||||||
|
<TextView |
||||||
|
android:id="@+id/tv_footer_middle" |
||||||
|
android:layout_width="wrap_content" |
||||||
|
android:layout_height="wrap_content" |
||||||
|
android:padding="6dp" |
||||||
|
tools:text="@string/title" /> |
||||||
|
|
||||||
</LinearLayout> |
</LinearLayout> |
||||||
|
|
||||||
<Switch |
<LinearLayout |
||||||
android:id="@+id/sw_hide_header" |
android:id="@+id/ll_footer_right" |
||||||
android:layout_width="match_parent" |
android:layout_width="match_parent" |
||||||
android:layout_height="wrap_content" |
android:layout_height="wrap_content" |
||||||
|
android:gravity="center_vertical" |
||||||
|
android:orientation="horizontal" |
||||||
|
tools:ignore="RtlHardcoded,RtlSymmetry"> |
||||||
|
|
||||||
|
<TextView |
||||||
|
android:layout_width="0dp" |
||||||
|
android:layout_height="wrap_content" |
||||||
|
android:layout_weight="1" |
||||||
android:padding="6dp" |
android:padding="6dp" |
||||||
android:text="@string/hideHeader" /> |
android:text="@string/right" /> |
||||||
|
|
||||||
<Switch |
<TextView |
||||||
android:id="@+id/sw_hide_footer" |
android:id="@+id/tv_footer_right" |
||||||
android:layout_width="match_parent" |
android:layout_width="wrap_content" |
||||||
android:layout_height="wrap_content" |
android:layout_height="wrap_content" |
||||||
android:padding="6dp" |
android:padding="6dp" |
||||||
android:text="@string/hideFooter" /> |
tools:text="@string/title" /> |
||||||
|
|
||||||
|
</LinearLayout> |
||||||
|
|
||||||
</LinearLayout> |
</LinearLayout> |
@ -1,61 +0,0 @@ |
|||||||
<?xml version="1.0" encoding="utf-8"?> |
|
||||||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" |
|
||||||
xmlns:app="http://schemas.android.com/apk/res-auto" |
|
||||||
android:layout_width="match_parent" |
|
||||||
android:layout_height="match_parent" |
|
||||||
android:orientation="vertical" |
|
||||||
android:padding="10dp"> |
|
||||||
|
|
||||||
<RadioGroup |
|
||||||
android:id="@+id/rg_title_mode" |
|
||||||
android:layout_width="match_parent" |
|
||||||
android:layout_height="wrap_content" |
|
||||||
android:orientation="horizontal"> |
|
||||||
|
|
||||||
<RadioButton |
|
||||||
android:id="@+id/rb_title_mode1" |
|
||||||
android:layout_width="wrap_content" |
|
||||||
android:layout_height="wrap_content" |
|
||||||
android:padding="3dp" |
|
||||||
android:text="@string/title_left" /> |
|
||||||
|
|
||||||
<RadioButton |
|
||||||
android:id="@+id/rb_title_mode2" |
|
||||||
android:layout_width="wrap_content" |
|
||||||
android:layout_height="wrap_content" |
|
||||||
android:padding="3dp" |
|
||||||
android:text="@string/title_center" /> |
|
||||||
|
|
||||||
<RadioButton |
|
||||||
android:id="@+id/rb_title_mode3" |
|
||||||
android:layout_width="wrap_content" |
|
||||||
android:layout_height="wrap_content" |
|
||||||
android:padding="3dp" |
|
||||||
android:text="@string/title_hide" /> |
|
||||||
</RadioGroup> |
|
||||||
|
|
||||||
<io.legado.app.ui.widget.DetailSeekBar |
|
||||||
android:id="@+id/dsb_title_size" |
|
||||||
android:layout_width="match_parent" |
|
||||||
android:layout_height="wrap_content" |
|
||||||
android:padding="3dp" |
|
||||||
app:max="10" |
|
||||||
app:title="字号" /> |
|
||||||
|
|
||||||
<io.legado.app.ui.widget.DetailSeekBar |
|
||||||
android:id="@+id/dsb_title_top" |
|
||||||
android:layout_width="match_parent" |
|
||||||
android:layout_height="wrap_content" |
|
||||||
android:padding="3dp" |
|
||||||
app:max="100" |
|
||||||
app:title="上间距" /> |
|
||||||
|
|
||||||
<io.legado.app.ui.widget.DetailSeekBar |
|
||||||
android:id="@+id/dsb_title_bottom" |
|
||||||
android:layout_width="match_parent" |
|
||||||
android:layout_height="wrap_content" |
|
||||||
android:padding="3dp" |
|
||||||
app:max="100" |
|
||||||
app:title="下间距" /> |
|
||||||
|
|
||||||
</LinearLayout> |
|
Loading…
Reference in new issue