parent
b9e1e89dd2
commit
2589cb2e30
@ -1,206 +1,38 @@ |
|||||||
<?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:app="http://schemas.android.com/apk/res-auto" |
||||||
xmlns:tools="http://schemas.android.com/tools" |
|
||||||
android:layout_width="match_parent" |
android:layout_width="match_parent" |
||||||
android:layout_height="match_parent" |
android:layout_height="match_parent" |
||||||
android:background="@color/background" |
android:background="@color/background" |
||||||
android:padding="8dp" |
android:padding="8dp" |
||||||
android:orientation="vertical"> |
android:orientation="vertical"> |
||||||
|
|
||||||
<LinearLayout |
<io.legado.app.ui.widget.DetailSeekBar |
||||||
android:id="@+id/ll_padding_top" |
android:id="@+id/dsb_padding_top" |
||||||
android:layout_width="match_parent" |
android:layout_width="match_parent" |
||||||
android:layout_height="wrap_content" |
android:layout_height="wrap_content" |
||||||
android:gravity="center" |
app:title="@string/padding_top" |
||||||
android:orientation="horizontal" |
app:max="100" /> |
||||||
android:paddingLeft="10dp" |
|
||||||
android:paddingRight="10dp" |
|
||||||
app:layout_constraintTop_toBottomOf="@+id/tv_text_bold"> |
|
||||||
|
|
||||||
<TextView |
<io.legado.app.ui.widget.DetailSeekBar |
||||||
android:layout_width="60dp" |
android:id="@+id/dsb_padding_bottom" |
||||||
android:layout_height="wrap_content" |
|
||||||
android:text="@string/padding_top" /> |
|
||||||
|
|
||||||
<androidx.appcompat.widget.AppCompatImageView |
|
||||||
android:id="@+id/iv_padding_top_remove" |
|
||||||
android:layout_width="24dp" |
|
||||||
android:layout_height="24dp" |
|
||||||
android:background="?android:attr/selectableItemBackgroundBorderless" |
|
||||||
android:src="@drawable/ic_remove" |
|
||||||
android:tint="@color/tv_text_default" /> |
|
||||||
|
|
||||||
<io.legado.app.lib.theme.view.ATESeekBar |
|
||||||
android:id="@+id/seek_padding_top" |
|
||||||
android:layout_width="0dp" |
|
||||||
android:layout_height="25dp" |
|
||||||
android:layout_gravity="center_vertical" |
|
||||||
android:layout_weight="4" |
|
||||||
android:max="100" /> |
|
||||||
|
|
||||||
<androidx.appcompat.widget.AppCompatImageView |
|
||||||
android:id="@+id/iv_padding_top_add" |
|
||||||
android:layout_width="24dp" |
|
||||||
android:layout_height="24dp" |
|
||||||
android:background="?android:attr/selectableItemBackgroundBorderless" |
|
||||||
android:src="@drawable/ic_add" |
|
||||||
android:tint="@color/tv_text_default" /> |
|
||||||
|
|
||||||
<TextView |
|
||||||
android:id="@+id/tv_padding_top" |
|
||||||
android:layout_width="40dp" |
|
||||||
android:layout_height="wrap_content" |
|
||||||
android:gravity="right" |
|
||||||
tools:ignore="RtlHardcoded" /> |
|
||||||
|
|
||||||
</LinearLayout> |
|
||||||
|
|
||||||
<LinearLayout |
|
||||||
android:id="@+id/ll_padding_bottom" |
|
||||||
android:layout_width="match_parent" |
android:layout_width="match_parent" |
||||||
android:layout_height="wrap_content" |
android:layout_height="wrap_content" |
||||||
android:layout_marginTop="10dp" |
app:title="@string/padding_bottom" |
||||||
android:gravity="center" |
app:max="100" /> |
||||||
android:orientation="horizontal" |
|
||||||
android:paddingLeft="10dp" |
|
||||||
android:paddingRight="10dp" |
|
||||||
app:layout_constraintTop_toBottomOf="@+id/tv_text_bold"> |
|
||||||
|
|
||||||
<TextView |
|
||||||
android:layout_width="60dp" |
|
||||||
android:layout_height="wrap_content" |
|
||||||
android:text="@string/padding_bottom" /> |
|
||||||
|
|
||||||
<androidx.appcompat.widget.AppCompatImageView |
|
||||||
android:id="@+id/iv_padding_bottom_remove" |
|
||||||
android:layout_width="24dp" |
|
||||||
android:layout_height="24dp" |
|
||||||
android:background="?android:attr/selectableItemBackgroundBorderless" |
|
||||||
android:src="@drawable/ic_remove" |
|
||||||
android:tint="@color/tv_text_default" /> |
|
||||||
|
|
||||||
<io.legado.app.lib.theme.view.ATESeekBar |
|
||||||
android:id="@+id/seek_padding_bottom" |
|
||||||
android:layout_width="0dp" |
|
||||||
android:layout_height="25dp" |
|
||||||
android:layout_gravity="center_vertical" |
|
||||||
android:layout_weight="4" |
|
||||||
android:max="100" /> |
|
||||||
|
|
||||||
<androidx.appcompat.widget.AppCompatImageView |
|
||||||
android:id="@+id/iv_padding_bottom_add" |
|
||||||
android:layout_width="24dp" |
|
||||||
android:layout_height="24dp" |
|
||||||
android:background="?android:attr/selectableItemBackgroundBorderless" |
|
||||||
android:src="@drawable/ic_add" |
|
||||||
android:tint="@color/tv_text_default" /> |
|
||||||
|
|
||||||
<TextView |
|
||||||
android:id="@+id/tv_padding_bottom" |
|
||||||
android:layout_width="40dp" |
|
||||||
android:layout_height="wrap_content" |
|
||||||
android:gravity="right" |
|
||||||
tools:ignore="RtlHardcoded" /> |
|
||||||
|
|
||||||
</LinearLayout> |
|
||||||
|
|
||||||
<LinearLayout |
<io.legado.app.ui.widget.DetailSeekBar |
||||||
android:id="@+id/ll_padding_left" |
android:id="@+id/dsb_padding_left" |
||||||
android:layout_width="match_parent" |
android:layout_width="match_parent" |
||||||
android:layout_height="wrap_content" |
android:layout_height="wrap_content" |
||||||
android:layout_marginTop="10dp" |
app:title="@string/padding_left" |
||||||
android:gravity="center" |
app:max="100" /> |
||||||
android:orientation="horizontal" |
|
||||||
android:paddingLeft="10dp" |
|
||||||
android:paddingRight="10dp" |
|
||||||
app:layout_constraintTop_toBottomOf="@+id/tv_text_bold"> |
|
||||||
|
|
||||||
<TextView |
<io.legado.app.ui.widget.DetailSeekBar |
||||||
android:layout_width="60dp" |
android:id="@+id/dsb_padding_right" |
||||||
android:layout_height="wrap_content" |
|
||||||
android:text="@string/padding_left" /> |
|
||||||
|
|
||||||
<androidx.appcompat.widget.AppCompatImageView |
|
||||||
android:id="@+id/iv_padding_left_remove" |
|
||||||
android:layout_width="24dp" |
|
||||||
android:layout_height="24dp" |
|
||||||
android:background="?android:attr/selectableItemBackgroundBorderless" |
|
||||||
android:src="@drawable/ic_remove" |
|
||||||
android:tint="@color/tv_text_default" /> |
|
||||||
|
|
||||||
<io.legado.app.lib.theme.view.ATESeekBar |
|
||||||
android:id="@+id/seek_padding_left" |
|
||||||
android:layout_width="0dp" |
|
||||||
android:layout_height="25dp" |
|
||||||
android:layout_gravity="center_vertical" |
|
||||||
android:layout_weight="4" |
|
||||||
android:max="100" /> |
|
||||||
|
|
||||||
<androidx.appcompat.widget.AppCompatImageView |
|
||||||
android:id="@+id/iv_padding_left_add" |
|
||||||
android:layout_width="24dp" |
|
||||||
android:layout_height="24dp" |
|
||||||
android:background="?android:attr/selectableItemBackgroundBorderless" |
|
||||||
android:src="@drawable/ic_add" |
|
||||||
android:tint="@color/tv_text_default" /> |
|
||||||
|
|
||||||
<TextView |
|
||||||
android:id="@+id/tv_padding_left" |
|
||||||
android:layout_width="40dp" |
|
||||||
android:layout_height="wrap_content" |
|
||||||
android:gravity="right" |
|
||||||
tools:ignore="RtlHardcoded" /> |
|
||||||
|
|
||||||
</LinearLayout> |
|
||||||
|
|
||||||
<LinearLayout |
|
||||||
android:id="@+id/ll_padding_right" |
|
||||||
android:layout_width="match_parent" |
android:layout_width="match_parent" |
||||||
android:layout_height="wrap_content" |
android:layout_height="wrap_content" |
||||||
android:layout_marginTop="10dp" |
app:title="@string/padding_right" |
||||||
android:gravity="center" |
app:max="100" /> |
||||||
android:orientation="horizontal" |
|
||||||
android:paddingLeft="10dp" |
|
||||||
android:paddingRight="10dp" |
|
||||||
app:layout_constraintTop_toBottomOf="@+id/tv_text_bold"> |
|
||||||
|
|
||||||
<TextView |
|
||||||
android:layout_width="60dp" |
|
||||||
android:layout_height="wrap_content" |
|
||||||
android:text="@string/padding_right" /> |
|
||||||
|
|
||||||
<androidx.appcompat.widget.AppCompatImageView |
|
||||||
android:id="@+id/iv_padding_right_remove" |
|
||||||
android:layout_width="24dp" |
|
||||||
android:layout_height="24dp" |
|
||||||
android:background="?android:attr/selectableItemBackgroundBorderless" |
|
||||||
android:src="@drawable/ic_remove" |
|
||||||
android:tint="@color/tv_text_default" /> |
|
||||||
|
|
||||||
<io.legado.app.lib.theme.view.ATESeekBar |
|
||||||
android:id="@+id/seek_padding_right" |
|
||||||
android:layout_width="0dp" |
|
||||||
android:layout_height="25dp" |
|
||||||
android:layout_gravity="center_vertical" |
|
||||||
android:layout_weight="4" |
|
||||||
android:max="100" /> |
|
||||||
|
|
||||||
<androidx.appcompat.widget.AppCompatImageView |
|
||||||
android:id="@+id/iv_padding_right_add" |
|
||||||
android:layout_width="24dp" |
|
||||||
android:layout_height="24dp" |
|
||||||
android:background="?android:attr/selectableItemBackgroundBorderless" |
|
||||||
android:src="@drawable/ic_add" |
|
||||||
android:tint="@color/tv_text_default" /> |
|
||||||
|
|
||||||
<TextView |
|
||||||
android:id="@+id/tv_padding_right" |
|
||||||
android:layout_width="40dp" |
|
||||||
android:layout_height="wrap_content" |
|
||||||
android:gravity="right" |
|
||||||
tools:ignore="RtlHardcoded" /> |
|
||||||
|
|
||||||
</LinearLayout> |
|
||||||
|
|
||||||
</LinearLayout> |
</LinearLayout> |
Loading…
Reference in new issue