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.
57 lines
1.8 KiB
57 lines
1.8 KiB
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:orientation="vertical">
|
|
<!--指示器-->
|
|
<include layout="@layout/scroll_title_indicator"/>
|
|
|
|
<androidx.viewpager.widget.ViewPager
|
|
android:id="@+id/tab_vp"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="0dp"
|
|
android:layout_weight="1">
|
|
</androidx.viewpager.widget.ViewPager>
|
|
|
|
<!--文件点击按钮-->
|
|
<RelativeLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="52dp"
|
|
android:paddingRight="10dp"
|
|
android:gravity="center_vertical">
|
|
|
|
|
|
<CheckBox
|
|
android:id="@+id/file_system_cb_selected_all"
|
|
android:layout_width="120dp"
|
|
android:layout_height="40dp"
|
|
android:layout_centerVertical="true"
|
|
android:layout_marginStart="15dp"
|
|
android:text="全选"
|
|
android:textSize="15dp"
|
|
android:textColor="@color/textSecondary"
|
|
android:theme="@style/MyCheckBox" />
|
|
|
|
<Button
|
|
android:id="@+id/file_system_btn_add_book"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="35dp"
|
|
android:minWidth="110dp"
|
|
android:layout_alignParentRight="true"
|
|
android:layout_centerVertical="true"
|
|
android:background="@drawable/selector_btn_add"
|
|
android:textColor="@color/selector_btn_file_add"
|
|
android:text="加入书架" />
|
|
|
|
<Button
|
|
android:id="@+id/file_system_btn_delete"
|
|
android:layout_width="70dp"
|
|
android:layout_height="35dp"
|
|
android:layout_centerVertical="true"
|
|
android:layout_marginRight="15dp"
|
|
android:background="@drawable/selector_btn_add"
|
|
android:textColor="@color/selector_btn_file_add"
|
|
android:layout_toLeftOf="@id/file_system_btn_add_book"
|
|
android:text="删除"/>
|
|
</RelativeLayout>
|
|
</LinearLayout> |