FairEmail/app/src/main/res/layout/activity_setup.xml

31 lines
1.3 KiB
XML
Raw Normal View History

2019-01-14 10:29:47 +00:00
<androidx.drawerlayout.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android"
2019-04-28 18:48:45 +00:00
xmlns:app="http://schemas.android.com/apk/res-auto"
2018-08-02 13:33:06 +00:00
xmlns:tools="http://schemas.android.com/tools"
2019-01-14 10:29:47 +00:00
android:id="@+id/drawer_layout"
2018-08-02 13:33:06 +00:00
android:layout_width="match_parent"
android:layout_height="match_parent"
2019-12-03 07:45:26 +00:00
tools:context="eu.faircode.email.ActivitySetup">
2019-01-14 10:29:47 +00:00
<FrameLayout
2019-01-14 10:29:47 +00:00
android:id="@+id/content_frame"
android:layout_width="match_parent"
android:layout_height="match_parent" />
<androidx.constraintlayout.widget.ConstraintLayout
2019-04-28 18:48:45 +00:00
android:id="@+id/drawer_container"
2019-01-14 10:29:47 +00:00
android:layout_width="270dp"
android:layout_height="match_parent"
android:layout_gravity="start"
2019-04-28 18:48:45 +00:00
android:background="?attr/colorDrawerBackground">
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/rvMenu"
2019-09-26 16:58:38 +00:00
android:layout_width="0dp"
android:layout_height="0dp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
2019-04-28 18:48:45 +00:00
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
</androidx.constraintlayout.widget.ConstraintLayout>
</androidx.drawerlayout.widget.DrawerLayout>