pull/2282/head
parent
56763dcc24
commit
52c985a473
@ -1,110 +1,120 @@ |
|||||||
<?xml version="1.0" encoding="utf-8"?> |
<?xml version="1.0" encoding="utf-8"?> |
||||||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" |
<FrameLayout 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" |
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="match_parent" |
||||||
android:orientation="vertical"> |
android:padding="16dp"> |
||||||
|
|
||||||
<androidx.appcompat.widget.Toolbar |
<LinearLayout |
||||||
android:id="@+id/tool_bar" |
android:id="@+id/vw_bg" |
||||||
android:layout_width="match_parent" |
android:layout_width="match_parent" |
||||||
android:layout_height="wrap_content" |
android:layout_height="wrap_content" |
||||||
android:theme="?attr/actionBarStyle" |
android:layout_gravity="center" |
||||||
app:popupTheme="@style/AppTheme.PopupOverlay" |
android:background="@drawable/shape_card_view" |
||||||
app:title="@string/bookmark" |
android:orientation="vertical" |
||||||
app:titleTextAppearance="@style/ToolbarTitle" /> |
tools:ignore="UselessParent"> |
||||||
|
|
||||||
<TextView |
<androidx.appcompat.widget.Toolbar |
||||||
android:id="@+id/tv_chapter_name" |
android:id="@+id/tool_bar" |
||||||
android:layout_width="match_parent" |
android:layout_width="match_parent" |
||||||
android:layout_height="wrap_content" |
android:layout_height="wrap_content" |
||||||
android:paddingLeft="16dp" |
android:theme="?attr/actionBarStyle" |
||||||
android:paddingRight="16dp" |
app:popupTheme="@style/AppTheme.PopupOverlay" |
||||||
android:textColor="@color/primaryText" /> |
app:title="@string/bookmark" |
||||||
|
app:titleTextAppearance="@style/ToolbarTitle" /> |
||||||
<androidx.core.widget.NestedScrollView |
|
||||||
android:layout_width="match_parent" |
|
||||||
android:layout_height="0dp" |
|
||||||
android:layout_weight="1"> |
|
||||||
|
|
||||||
<LinearLayout |
<TextView |
||||||
|
android:id="@+id/tv_chapter_name" |
||||||
android:layout_width="match_parent" |
android:layout_width="match_parent" |
||||||
android:layout_height="wrap_content" |
android:layout_height="wrap_content" |
||||||
android:orientation="vertical" |
android:paddingLeft="16dp" |
||||||
android:padding="16dp"> |
android:paddingRight="16dp" |
||||||
|
android:textColor="@color/primaryText" /> |
||||||
|
|
||||||
<io.legado.app.ui.widget.text.TextInputLayout |
<androidx.core.widget.NestedScrollView |
||||||
|
android:layout_width="match_parent" |
||||||
|
android:layout_height="0dp" |
||||||
|
android:layout_weight="1"> |
||||||
|
|
||||||
|
<LinearLayout |
||||||
android:layout_width="match_parent" |
android:layout_width="match_parent" |
||||||
android:layout_height="wrap_content" |
android:layout_height="wrap_content" |
||||||
android:paddingTop="3dp"> |
android:orientation="vertical" |
||||||
|
android:padding="16dp"> |
||||||
|
|
||||||
<io.legado.app.lib.theme.view.ThemeEditText |
<io.legado.app.ui.widget.text.TextInputLayout |
||||||
android:id="@+id/edit_book_text" |
|
||||||
android:layout_width="match_parent" |
android:layout_width="match_parent" |
||||||
android:layout_height="wrap_content" |
android:layout_height="wrap_content" |
||||||
android:hint="@string/content" |
android:paddingTop="3dp"> |
||||||
tools:ignore="SpeakableTextPresentCheck,TouchTargetSizeCheck" /> |
|
||||||
|
|
||||||
</io.legado.app.ui.widget.text.TextInputLayout> |
<io.legado.app.lib.theme.view.ThemeEditText |
||||||
|
android:id="@+id/edit_book_text" |
||||||
|
android:layout_width="match_parent" |
||||||
|
android:layout_height="wrap_content" |
||||||
|
android:hint="@string/content" |
||||||
|
tools:ignore="SpeakableTextPresentCheck,TouchTargetSizeCheck" /> |
||||||
|
|
||||||
<io.legado.app.ui.widget.text.TextInputLayout |
</io.legado.app.ui.widget.text.TextInputLayout> |
||||||
android:layout_width="match_parent" |
|
||||||
android:layout_height="wrap_content" |
|
||||||
android:paddingTop="3dp"> |
|
||||||
|
|
||||||
<io.legado.app.lib.theme.view.ThemeEditText |
<io.legado.app.ui.widget.text.TextInputLayout |
||||||
android:id="@+id/edit_content" |
|
||||||
android:layout_width="match_parent" |
android:layout_width="match_parent" |
||||||
android:layout_height="wrap_content" |
android:layout_height="wrap_content" |
||||||
android:hint="@string/note_content" |
android:paddingTop="3dp"> |
||||||
tools:ignore="SpeakableTextPresentCheck,TouchTargetSizeCheck" /> |
|
||||||
|
|
||||||
</io.legado.app.ui.widget.text.TextInputLayout> |
<io.legado.app.lib.theme.view.ThemeEditText |
||||||
|
android:id="@+id/edit_content" |
||||||
|
android:layout_width="match_parent" |
||||||
|
android:layout_height="wrap_content" |
||||||
|
android:hint="@string/note_content" |
||||||
|
tools:ignore="SpeakableTextPresentCheck,TouchTargetSizeCheck" /> |
||||||
|
|
||||||
</LinearLayout> |
</io.legado.app.ui.widget.text.TextInputLayout> |
||||||
|
|
||||||
</androidx.core.widget.NestedScrollView> |
</LinearLayout> |
||||||
|
|
||||||
<com.google.android.flexbox.FlexboxLayout |
</androidx.core.widget.NestedScrollView> |
||||||
android:layout_width="match_parent" |
|
||||||
android:layout_height="wrap_content" |
|
||||||
android:paddingLeft="12dp" |
|
||||||
android:paddingRight="12dp" |
|
||||||
app:flexWrap="wrap" |
|
||||||
app:justifyContent="space_between"> |
|
||||||
|
|
||||||
<io.legado.app.ui.widget.text.AccentTextView |
|
||||||
android:id="@+id/tv_footer_left" |
|
||||||
android:layout_width="wrap_content" |
|
||||||
android:layout_height="wrap_content" |
|
||||||
android:padding="12dp" |
|
||||||
android:text="@string/delete" |
|
||||||
android:visibility="invisible" |
|
||||||
tools:ignore="RtlHardcoded" /> |
|
||||||
|
|
||||||
<LinearLayout |
<com.google.android.flexbox.FlexboxLayout |
||||||
android:layout_width="wrap_content" |
android:layout_width="match_parent" |
||||||
android:layout_height="wrap_content" |
android:layout_height="wrap_content" |
||||||
android:orientation="horizontal"> |
android:paddingLeft="12dp" |
||||||
|
android:paddingRight="12dp" |
||||||
|
app:flexWrap="wrap" |
||||||
|
app:justifyContent="space_between"> |
||||||
|
|
||||||
<io.legado.app.ui.widget.text.AccentTextView |
<io.legado.app.ui.widget.text.AccentTextView |
||||||
android:id="@+id/tv_cancel" |
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="12dp" |
android:padding="12dp" |
||||||
android:text="@string/cancel" |
android:text="@string/delete" |
||||||
|
android:visibility="invisible" |
||||||
tools:ignore="RtlHardcoded" /> |
tools:ignore="RtlHardcoded" /> |
||||||
|
|
||||||
<io.legado.app.ui.widget.text.AccentTextView |
<LinearLayout |
||||||
android:id="@+id/tv_ok" |
|
||||||
android:layout_width="wrap_content" |
android:layout_width="wrap_content" |
||||||
android:layout_height="wrap_content" |
android:layout_height="wrap_content" |
||||||
android:padding="12dp" |
android:orientation="horizontal"> |
||||||
android:text="@string/ok" |
|
||||||
tools:ignore="RtlHardcoded" /> |
<io.legado.app.ui.widget.text.AccentTextView |
||||||
|
android:id="@+id/tv_cancel" |
||||||
|
android:layout_width="wrap_content" |
||||||
|
android:layout_height="wrap_content" |
||||||
|
android:padding="12dp" |
||||||
|
android:text="@string/cancel" |
||||||
|
tools:ignore="RtlHardcoded" /> |
||||||
|
|
||||||
|
<io.legado.app.ui.widget.text.AccentTextView |
||||||
|
android:id="@+id/tv_ok" |
||||||
|
android:layout_width="wrap_content" |
||||||
|
android:layout_height="wrap_content" |
||||||
|
android:padding="12dp" |
||||||
|
android:text="@string/ok" |
||||||
|
tools:ignore="RtlHardcoded" /> |
||||||
|
|
||||||
</LinearLayout> |
</LinearLayout> |
||||||
|
|
||||||
</com.google.android.flexbox.FlexboxLayout> |
</com.google.android.flexbox.FlexboxLayout> |
||||||
</LinearLayout> |
</LinearLayout> |
||||||
|
</FrameLayout> |
Loading…
Reference in new issue