You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
71 lines
2.4 KiB
71 lines
2.4 KiB
<?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"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:paddingLeft="10dp"
|
|
android:paddingRight="10dp"
|
|
android:gravity="center"
|
|
android:orientation="vertical">
|
|
|
|
<LinearLayout
|
|
android:id="@+id/ll_title"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:paddingLeft="10dp"
|
|
android:paddingRight="10dp"
|
|
android:paddingTop="6dp"
|
|
android:paddingBottom="6dp"
|
|
android:layout_margin="4dp"
|
|
android:background="@color/background"
|
|
android:elevation="3dp"
|
|
android:orientation="horizontal"
|
|
android:gravity="center_vertical"
|
|
tools:ignore="UseCompoundDrawables">
|
|
|
|
<TextView
|
|
android:id="@+id/tv_name"
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1" />
|
|
|
|
<ImageView
|
|
android:id="@+id/iv_status"
|
|
android:layout_width="20dp"
|
|
android:layout_height="20dp"
|
|
android:src="@drawable/ic_add"
|
|
app:tint="@color/tv_text_secondary"
|
|
tools:ignore="ContentDescription" />
|
|
|
|
</LinearLayout>
|
|
|
|
<FrameLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center">
|
|
|
|
<com.google.android.flexbox.FlexboxLayout
|
|
android:id="@+id/gl_child"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:clipToPadding="false"
|
|
android:overScrollMode="never"
|
|
android:padding="3dp"
|
|
android:visibility="gone"
|
|
app:dividerDrawable="@drawable/shape_space_divider"
|
|
app:flexDirection="row"
|
|
app:flexWrap="wrap"
|
|
app:showDivider="middle" />
|
|
|
|
<io.legado.app.ui.widget.anima.RotateLoading
|
|
android:id="@+id/rotate_loading"
|
|
android:layout_width="36dp"
|
|
android:layout_height="36dp"
|
|
android:visibility="gone"
|
|
android:layout_gravity="center"
|
|
app:loading_width="2dp" />
|
|
|
|
</FrameLayout>
|
|
|
|
</LinearLayout> |