area_group_nearby_group_activity.xml 1000 B

123456789101112131415161718192021222324
  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. <com.sheishuo.app.common.views.BaseToolbar
  11. android:id="@id/toolbar"
  12. android:layout_width="match_parent"
  13. android:layout_height="@dimen/action_bar_height"
  14. app:title="附近群"
  15. app:left_text="返回"
  16. style="@style/fullToolbarStyle"/>
  17. </android.support.design.widget.AppBarLayout>
  18. <android.support.v7.widget.RecyclerView
  19. android:id="@+id/area_group_nearby_group_recyclerview"
  20. android:layout_width="match_parent"
  21. android:layout_height="match_parent"/>
  22. </LinearLayout>