22 lines
915 B
XML
22 lines
915 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:id="@+id/xl_top"
|
|
android:background="@color/theme_background"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
<include layout="@layout/hot_top"/>
|
|
<androidx.viewpager.widget.ViewPager
|
|
android:id="@+id/vp_hot"
|
|
android:paddingTop="@dimen/dp4"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:layout_marginLeft="@dimen/comm_item_margin_hor"
|
|
android:layout_marginRight="@dimen/comm_item_margin_hor"
|
|
android:layout_below="@+id/rl_top"/>
|
|
<com.ubt.jimu.widgets.LoadingView
|
|
android:id="@+id/loading"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:layout_below="@+id/rl_top"/>
|
|
</RelativeLayout>
|