123456789101112131415161718192021222324252627282930313233 |
- <?xml version="1.0" encoding="utf-8"?>
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:app="http://schemas.android.com/apk/res-auto"
- xmlns:tab="http://schemas.android.com/tools"
- android:orientation="vertical"
- android:layout_width="match_parent"
- android:layout_height="match_parent">
- <android.support.design.widget.AppBarLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content">
- <com.sheishuo.app.common.views.BaseToolbar
- android:id="@+id/toolbar"
- android:layout_width="match_parent"
- android:layout_height="@dimen/action_bar_height"
- style="@style/fullToolbarStyle"
- app:title="我的快讯广告"/>
- </android.support.design.widget.AppBarLayout>
- <android.support.design.widget.TabLayout
- android:id="@+id/mine_trade_tab_layout"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:background="@color/white"
- tab:tabTextColor="@color/colorPrimary"
- tab:tabSelectedTextColor="@color/colorAccent"
- tab:tabMode="fixed"/>
- <android.support.v7.widget.RecyclerView
- android:id="@+id/mine_trade_recyclerview"
- android:layout_width="match_parent"
- android:layout_height="match_parent"/>
- </LinearLayout>
|