Android App zur Berechnung der Visiereinstellung eines Recurvebogens.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

activity_main.xml 1.1KB

123456789101112131415161718192021222324252627282930
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <androidx.drawerlayout.widget.DrawerLayout 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:id="@+id/drawer_layout"
  6. android:layout_width="match_parent"
  7. android:layout_height="match_parent"
  8. android:fitsSystemWindows="true"
  9. tools:openDrawer="start">
  10. // IMPORTANT: include must be before com.google.android.material.navigation.NavigationView,
  11. otherwise the menus don't work!!!
  12. <include
  13. android:id="@+id/app_bar_main"
  14. layout="@layout/app_bar_main"
  15. android:layout_width="match_parent"
  16. android:layout_height="match_parent" />
  17. <com.google.android.material.navigation.NavigationView
  18. android:id="@+id/nav_view"
  19. android:layout_width="wrap_content"
  20. android:layout_height="match_parent"
  21. android:layout_gravity="start"
  22. android:fitsSystemWindows="true"
  23. app:headerLayout="@layout/nav_header_main"
  24. app:menu="@menu/activity_main_drawer" />
  25. </androidx.drawerlayout.widget.DrawerLayout>