activity_main.xml 1.1 KB

1234567891011121314151617181920212223242526
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <androidx.coordinatorlayout.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. xmlns:app="http://schemas.android.com/apk/res-auto"
  4. xmlns:tools="http://schemas.android.com/tools"
  5. android:layout_width="match_parent"
  6. android:layout_height="match_parent"
  7. tools:context=".MainActivity"
  8. android:focusable="true"
  9. android:focusableInTouchMode="true">
  10. <com.google.android.material.appbar.AppBarLayout
  11. android:layout_width="match_parent"
  12. android:layout_height="wrap_content"
  13. android:theme="@style/Theme.Ichandroid.AppBarOverlay"/>
  14. <include layout="@layout/content_main" />
  15. <!-- <com.google.android.material.floatingactionbutton.FloatingActionButton-->
  16. <!-- android:id="@+id/fab"-->
  17. <!-- android:layout_width="wrap_content"-->
  18. <!-- android:layout_height="wrap_content"-->
  19. <!-- android:layout_gravity="bottom|end"-->
  20. <!-- android:layout_margin="@dimen/fab_margin"-->
  21. <!-- app:srcCompat="@android:drawable/ic_dialog_email" />-->
  22. </androidx.coordinatorlayout.widget.CoordinatorLayout>