avchat_settings_layout.xml 1.2 KB

1234567891011121314151617181920212223242526272829303132
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout
  3. xmlns:android="http://schemas.android.com/apk/res/android"
  4. xmlns:app="http://schemas.android.com/apk/res-auto"
  5. android:orientation="vertical"
  6. android:layout_width="match_parent"
  7. android:layout_height="match_parent">
  8. <android.support.design.widget.AppBarLayout
  9. android:id="@+id/app_bar_layout"
  10. android:layout_width="match_parent"
  11. android:layout_height="wrap_content"
  12. android:theme="@style/AppTheme.AppBarOverlay"
  13. app:elevation="0dp">
  14. <android.support.v7.widget.Toolbar
  15. android:id="@+id/toolbar"
  16. android:layout_width="match_parent"
  17. android:layout_height="?attr/actionBarSize"
  18. android:background="?attr/colorPrimary"
  19. app:titleTextAppearance="@style/Toolbar.TitleText">
  20. </android.support.v7.widget.Toolbar>
  21. </android.support.design.widget.AppBarLayout>
  22. <fragment
  23. android:id="@+id/fragment"
  24. android:name="com.shuishuo.app.avchat.activity.AVChatSettingsFragment"
  25. android:layout_width="match_parent"
  26. android:layout_height="match_parent"/>
  27. </LinearLayout>