mine_trade.xml 1.3 KB

123456789101112131415161718192021222324252627282930313233
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. xmlns:app="http://schemas.android.com/apk/res-auto"
  4. xmlns:tab="http://schemas.android.com/tools"
  5. android:orientation="vertical"
  6. android:layout_width="match_parent"
  7. android:layout_height="match_parent">
  8. <android.support.design.widget.AppBarLayout
  9. android:layout_width="match_parent"
  10. android:layout_height="wrap_content">
  11. <com.sheishuo.app.common.views.BaseToolbar
  12. android:id="@+id/toolbar"
  13. android:layout_width="match_parent"
  14. android:layout_height="@dimen/action_bar_height"
  15. style="@style/fullToolbarStyle"
  16. app:title="我的快讯广告"/>
  17. </android.support.design.widget.AppBarLayout>
  18. <android.support.design.widget.TabLayout
  19. android:id="@+id/mine_trade_tab_layout"
  20. android:layout_width="match_parent"
  21. android:layout_height="wrap_content"
  22. android:background="@color/white"
  23. tab:tabTextColor="@color/colorPrimary"
  24. tab:tabSelectedTextColor="@color/colorAccent"
  25. tab:tabMode="fixed"/>
  26. <android.support.v7.widget.RecyclerView
  27. android:id="@+id/mine_trade_recyclerview"
  28. android:layout_width="match_parent"
  29. android:layout_height="match_parent"/>
  30. </LinearLayout>