group_list_activity.xml 1.3 KB

123456789101112131415161718192021222324252627282930313233
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. xmlns:app="http://schemas.android.com/apk/res-auto"
  4. android:id="@+id/group_list_root"
  5. android:layout_width="fill_parent"
  6. android:layout_height="fill_parent">
  7. <android.support.design.widget.AppBarLayout
  8. android:id="@+id/app_bar_layout"
  9. android:layout_width="match_parent"
  10. android:layout_height="wrap_content"
  11. android:theme="@style/AppTheme.AppBarOverlay"
  12. app:elevation="0dp">
  13. <com.sheishuo.app.common.views.BaseToolbar
  14. android:id="@+id/toolbar"
  15. android:layout_width="match_parent"
  16. android:layout_height="wrap_content"
  17. style="@style/fullToolbarStyle"/>
  18. </android.support.design.widget.AppBarLayout>
  19. <ListView
  20. android:id="@+id/group_list"
  21. android:layout_width="fill_parent"
  22. android:layout_height="fill_parent"
  23. android:layout_below="@id/app_bar_layout"
  24. android:background="@color/white"
  25. android:cacheColorHint="@color/transparent"
  26. android:divider="@color/transparent"
  27. android:dividerHeight="0dp"
  28. android:scrollbars="none" />
  29. </RelativeLayout>