aboutsummaryrefslogtreecommitdiff
path: root/app/src/main/res/layout/abstract_fullscreen_activity.xml
diff options
context:
space:
mode:
authorIván Ávalos <avalos@disroot.org>2023-01-08 17:00:11 -0600
committerIván Ávalos <avalos@disroot.org>2023-01-08 17:00:11 -0600
commitc6879f14223a82f9e67767fd7299606f6d43703a (patch)
treed47765638cbb886ef1f74e367890cc798aea2c7b /app/src/main/res/layout/abstract_fullscreen_activity.xml
parentf14affd3ca86202b9cb5eb627264618c6ab8f0c2 (diff)
downloaddsub-c6879f14223a82f9e67767fd7299606f6d43703a.tar.gz
dsub-c6879f14223a82f9e67767fd7299606f6d43703a.tar.bz2
dsub-c6879f14223a82f9e67767fd7299606f6d43703a.zip
Migrate to AndroidX
Diffstat (limited to 'app/src/main/res/layout/abstract_fullscreen_activity.xml')
-rw-r--r--app/src/main/res/layout/abstract_fullscreen_activity.xml6
1 files changed, 3 insertions, 3 deletions
diff --git a/app/src/main/res/layout/abstract_fullscreen_activity.xml b/app/src/main/res/layout/abstract_fullscreen_activity.xml
index 7ca9b936..7eb93b11 100644
--- a/app/src/main/res/layout/abstract_fullscreen_activity.xml
+++ b/app/src/main/res/layout/abstract_fullscreen_activity.xml
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
-<android.support.v4.widget.DrawerLayout
+<androidx.drawerlayout.widget.DrawerLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/drawer_layout"
@@ -13,9 +13,9 @@
android:layout_height="match_parent"/>
<!-- The navigation drawer -->
- <android.support.design.widget.NavigationView
+ <com.google.android.material.navigation.NavigationView
android:id="@+id/left_drawer"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_gravity="start"/>
-</android.support.v4.widget.DrawerLayout>
+</androidx.drawerlayout.widget.DrawerLayout>