pda/zhuike/src/main/res/layout/fragment_fragment__shelf.xml

73 lines
2.5 KiB
XML
Raw Normal View History

2019-02-01 22:48:32 +08:00
<?xml version="1.0" encoding="utf-8"?>
2019-02-12 13:23:07 +08:00
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
2019-02-14 00:58:03 +08:00
xmlns:tools="http://schemas.android.com/tools"
2019-02-01 22:48:32 +08:00
android:layout_width="match_parent"
android:layout_height="match_parent"
2019-02-21 23:56:21 +08:00
android:layout_marginLeft="@dimen/marginLeft"
android:layout_marginRight="@dimen/marginRight"
android:orientation="vertical">
2019-02-02 17:27:23 +08:00
2019-06-01 22:01:34 +08:00
<FrameLayout
android:id="@+id/banner_container"
2019-06-02 13:30:01 +08:00
style="@style/frmBannerContainer" />
2019-06-01 22:01:34 +08:00
2019-02-21 23:56:21 +08:00
2019-04-26 00:31:07 +08:00
<FrameLayout
2019-02-21 23:56:21 +08:00
android:layout_width="match_parent"
android:layout_height="match_parent"
2019-04-26 00:31:07 +08:00
2019-02-21 23:56:21 +08:00
android:orientation="vertical">
2019-06-01 22:01:34 +08:00
<android.support.v4.widget.SwipeRefreshLayout
android:id="@+id/swipeLayout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
2019-02-21 23:56:21 +08:00
<android.support.v7.widget.RecyclerView
android:id="@+id/id_recyclerview"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1"
android:divider="#ffff0000"
android:dividerHeight="10dp"
2019-04-17 23:28:18 +08:00
android:paddingTop="1dp"
android:paddingBottom="40dp"
/>
</android.support.v4.widget.SwipeRefreshLayout>
2019-06-01 22:01:34 +08:00
2019-02-21 23:56:21 +08:00
<LinearLayout
android:id="@+id/llShelfBottom"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="0"
android:background="@color/white"
android:gravity="bottom"
2019-04-26 00:31:07 +08:00
android:layout_gravity="bottom"
2019-02-21 23:56:21 +08:00
android:orientation="horizontal"
2019-04-26 00:31:07 +08:00
android:visibility="visible"
2019-02-21 23:56:21 +08:00
android:paddingBottom="0dp"
2019-04-26 00:31:07 +08:00
2019-02-21 23:56:21 +08:00
>
<Button
android:id="@+id/btnSelect"
style="@style/buttonCates"
android:text="全选"
android:textColor="@color/colorAccent" />
<Button
android:id="@+id/btnDelete"
style="@style/buttonCates"
android:text="删除"
android:textColor="@color/colorAccent" />
</LinearLayout>
2019-04-26 00:31:07 +08:00
</FrameLayout>
2019-04-14 23:17:31 +08:00
2019-02-02 17:27:23 +08:00
2019-02-14 00:58:03 +08:00
2019-02-21 23:56:21 +08:00
<android.support.design.widget.TextInputEditText
android:layout_width="wrap_content"
android:layout_height="1500dp" />
2019-02-12 13:23:07 +08:00
</LinearLayout>