mine_hobby_select_activity.xml 1.0 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. <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. app:right_text="确认"/>
  17. </android.support.design.widget.AppBarLayout>
  18. <LinearLayout
  19. android:id="@+id/mine_hobby_select_activity_hobby_layout"
  20. android:layout_width="match_parent"
  21. android:layout_height="match_parent"
  22. android:padding="16dp"
  23. android:orientation="vertical"/>
  24. </LinearLayout>