32 lines
1.3 KiB
XML
32 lines
1.3 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:background="@color/theme_background"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
<LinearLayout
|
|
android:orientation="vertical"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:layout_below="@+id/include_title_layout">
|
|
<ViewStub
|
|
android:id="@+id/vs_no_subscription"
|
|
android:layout="@layout/layout_link_no_subscription"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"/>
|
|
<com.recyclelib.URecyclerView
|
|
android:id="@+id/rv_favourite"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="0dp"
|
|
android:layout_weight="3"
|
|
style="@style/recyclerviewBar_style"/>
|
|
</LinearLayout>
|
|
<com.ubt.jimu.widgets.LoadStateView
|
|
android:id="@+id/loadStateView"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"/>
|
|
<include
|
|
android:id="@+id/include_title_layout"
|
|
layout="@layout/tool_bar_layout"/>
|
|
</RelativeLayout>
|