2022-08-22 18:11:00 +08:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2022-10-27 14:48:07 +08:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
2022-08-22 18:11:00 +08:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent">
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/sidebar_back"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:scaleType="centerCrop" />
|
|
|
|
|
|
|
|
<View
|
2022-08-26 09:52:04 +08:00
|
|
|
android:id="@+id/mask"
|
2022-08-22 18:11:00 +08:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:background="#90000000" />
|
|
|
|
|
|
|
|
<LinearLayout
|
2022-10-27 14:48:07 +08:00
|
|
|
android:id="@+id/have_data"
|
2022-08-22 18:11:00 +08:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:orientation="vertical"
|
|
|
|
android:paddingStart="8dp"
|
|
|
|
android:paddingEnd="8dp">
|
|
|
|
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:orientation="vertical"
|
2022-08-24 15:03:26 +08:00
|
|
|
android:paddingTop="26dp">
|
2022-08-22 18:11:00 +08:00
|
|
|
|
|
|
|
|
|
|
|
<com.yunbao.common.custom.CommonRefreshView
|
|
|
|
android:id="@+id/sidebarList"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:layout_marginTop="10dp">
|
|
|
|
|
|
|
|
</com.yunbao.common.custom.CommonRefreshView>
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
</LinearLayout>
|
2022-10-27 14:48:07 +08:00
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/view_no_data_live"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:gravity="center_horizontal"
|
|
|
|
android:orientation="vertical"
|
|
|
|
android:paddingStart="8dp"
|
|
|
|
android:paddingTop="26dp"
|
|
|
|
android:paddingEnd="8dp">
|
|
|
|
|
|
|
|
<androidx.cardview.widget.CardView
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
|
|
|
app:cardCornerRadius="4dp"
|
|
|
|
app:cardElevation="4dp">
|
|
|
|
|
|
|
|
<com.ms.banner.Banner
|
|
|
|
android:id="@+id/banner"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="77dp"
|
|
|
|
app:delay_time="3000"
|
|
|
|
app:indicator_drawable_selected="@drawable/bg_home_indicator_selected"
|
|
|
|
app:indicator_drawable_unselected="@drawable/bg_home_indicator_unselected"
|
|
|
|
app:indicator_height="8dp"
|
|
|
|
app:indicator_margin="6dp"
|
|
|
|
app:indicator_width="8dp" />
|
|
|
|
|
|
|
|
|
|
|
|
</androidx.cardview.widget.CardView>
|
|
|
|
|
|
|
|
<FrameLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginTop="20dp">
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="@string/recommended_for_you"
|
|
|
|
android:textColor="#FFF6F7FB"
|
|
|
|
android:textSize="14sp" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/in_batch"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="end|center_vertical"
|
|
|
|
android:layout_marginEnd="8dp"
|
|
|
|
android:drawableStart="@mipmap/icon_change"
|
|
|
|
android:drawablePadding="2dp"
|
|
|
|
android:text="@string/in_batch"
|
|
|
|
android:textColor="#FFF6F7FB"
|
|
|
|
android:textSize="10sp" />
|
|
|
|
|
|
|
|
</FrameLayout>
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:layout_width="130dp"
|
|
|
|
android:layout_height="130dp"
|
|
|
|
android:layout_marginTop="194dp"
|
|
|
|
android:src="@mipmap/img_no_anchor" />
|
|
|
|
</LinearLayout>
|
|
|
|
|
2022-08-22 18:11:00 +08:00
|
|
|
</FrameLayout>
|