42 lines
1.7 KiB
XML
42 lines
1.7 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:orientation="vertical"
|
|
android:background="@color/bg_F9F9F9"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
<com.ubt.jimu.widgets.TitleView
|
|
android:id="@+id/title"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"/>
|
|
<com.recyclelib.URecyclerView
|
|
android:id="@+id/ur_collection"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:layout_below="@+id/title"
|
|
style="@style/scrollbar_recyclerView_vertical"/>
|
|
<com.ubt.jimu.widgets.LoadingView
|
|
android:id="@+id/loading"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:layout_below="@+id/title"/>
|
|
<LinearLayout
|
|
android:gravity="center"
|
|
android:orientation="horizontal"
|
|
android:id="@+id/xl_delete"
|
|
android:background="@drawable/action_button_background"
|
|
android:visibility="gone"
|
|
android:layout_width="@dimen/btn_width"
|
|
android:layout_height="@dimen/btn_height"
|
|
android:layout_marginBottom="@dimen/user_center_collection_delete_margin_bottom"
|
|
android:layout_alignParentBottom="true"
|
|
android:layout_centerHorizontal="true">
|
|
<TextView
|
|
android:textSize="@dimen/title15"
|
|
android:textColor="@color/txt_white"
|
|
android:id="@+id/tv_collection_delete"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/collection_delete"/>
|
|
</LinearLayout>
|
|
</RelativeLayout>
|