52 lines
2.2 KiB
XML
52 lines
2.2 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
android:orientation="vertical"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
<com.ubt.jimu.widgets.NavigationBarView
|
|
android:id="@+id/nbv_bar"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
app:nbv_mode="left_right"
|
|
app:nbv_title="@string/title_diy_user"/>
|
|
<LinearLayout
|
|
android:orientation="horizontal"
|
|
android:id="@+id/ll_edit"
|
|
android:visibility="gone"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_alignParentRight="true">
|
|
<ImageView
|
|
android:id="@+id/iv_trash"
|
|
android:background="@drawable/ic_diy_trash"
|
|
android:layout_width="@dimen/theme_navigation_size"
|
|
android:layout_height="@dimen/theme_navigation_size"
|
|
android:layout_marginRight="2dp"/>
|
|
<ImageView
|
|
android:id="@+id/iv_edit_exit"
|
|
android:background="@drawable/ic_diy_edit_exit"
|
|
android:layout_width="@dimen/theme_navigation_size"
|
|
android:layout_height="@dimen/theme_navigation_size"/>
|
|
</LinearLayout>
|
|
<com.recyclelib.URecyclerView
|
|
android:id="@+id/rv_list"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:layout_below="@+id/nbv_bar"/>
|
|
<ImageView
|
|
android:id="@+id/iv_new"
|
|
android:background="@drawable/ic_diy_new"
|
|
android:layout_width="@dimen/publish_btn"
|
|
android:layout_height="@dimen/publish_btn"
|
|
android:layout_marginRight="@dimen/dp29w"
|
|
android:layout_marginBottom="@dimen/dp29w"
|
|
android:layout_alignParentRight="true"
|
|
android:layout_alignParentBottom="true"/>
|
|
<com.ubt.jimu.widgets.error.UErrorView
|
|
android:id="@+id/ev_error"
|
|
android:visibility="gone"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:layout_below="@+id/nbv_bar"/>
|
|
</RelativeLayout>
|