65 lines
3.0 KiB
XML
65 lines
3.0 KiB
XML
<com.xuebiping.bolizhuzi.view.main.ui.VpSwipeRefreshLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:id="@+id/channel_refresh"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:background="@color/transparent"
|
|
tools:viewBindingIgnore="true">
|
|
|
|
|
|
<androidx.coordinatorlayout.widget.CoordinatorLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:background="@color/transparent">
|
|
|
|
<com.google.android.material.appbar.AppBarLayout
|
|
android:id="@+id/channel_app_bar"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:background="@android:color/white"
|
|
android:orientation="vertical">
|
|
|
|
<com.google.android.material.appbar.CollapsingToolbarLayout
|
|
android:id="@+id/ctl_layout"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="end|bottom"
|
|
app:layout_scrollFlags="scroll|enterAlwaysCollapsed">
|
|
|
|
<RelativeLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginLeft="6dp"
|
|
android:layout_marginTop="6dp"
|
|
android:layout_marginRight="6dp"
|
|
android:visibility="gone">
|
|
|
|
<!--<include-->
|
|
<!--layout="@layout/item_view_pager"-->
|
|
<!--android:layout_width="match_parent"-->
|
|
<!--android:layout_height="wrap_content"-->
|
|
<!--android:layout_marginLeft="5dp"-->
|
|
<!--android:layout_marginRight="5dp"-->
|
|
<!--android:layout_marginTop="5dp" />-->
|
|
|
|
<com.youth.banner.Banner
|
|
android:id="@+id/image_banner"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="140dp"
|
|
android:background="@drawable/shape_banner_bg"
|
|
android:visibility="gone" />
|
|
</RelativeLayout>
|
|
</com.google.android.material.appbar.CollapsingToolbarLayout>
|
|
</com.google.android.material.appbar.AppBarLayout>
|
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
|
android:id="@+id/rv_main_channel"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:layout_marginLeft="3dp"
|
|
android:layout_marginRight="3dp"
|
|
android:layout_marginBottom="55dp"
|
|
app:layout_behavior="@string/appbar_scrolling_view_behavior" />
|
|
</androidx.coordinatorlayout.widget.CoordinatorLayout>
|
|
</com.xuebiping.bolizhuzi.view.main.ui.VpSwipeRefreshLayout> |