mine_neaby_poeple.xml 1.1 KB

123456789101112131415161718192021222324252627
  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. android:orientation="vertical"
  5. android:layout_width="match_parent"
  6. android:layout_height="match_parent">
  7. <android.support.design.widget.AppBarLayout
  8. android:layout_width="match_parent"
  9. android:layout_height="wrap_content"
  10. android:orientation="vertical"
  11. android:background="@color/colorPrimary">
  12. <com.sheishuo.app.common.views.BaseToolbar
  13. android:id="@+id/toolbar"
  14. android:layout_width="match_parent"
  15. android:layout_height="@dimen/action_bar_height"
  16. android:title="附近的人"
  17. app:left_text="返回"
  18. style="@style/fullToolbarStyle"/>
  19. </android.support.design.widget.AppBarLayout>
  20. <android.support.v7.widget.RecyclerView
  21. android:id="@+id/nearby_people_recyclerview"
  22. android:layout_width="match_parent"
  23. android:layout_height="match_parent"/>
  24. </LinearLayout>