summaryrefslogtreecommitdiffstats
path: root/app/src/main/res/layout/drawer_admin_account.xml
diff options
context:
space:
mode:
authorThomas <tschneider.ac@gmail.com>2022-12-09 18:15:26 +0100
committerThomas <tschneider.ac@gmail.com>2022-12-09 18:15:26 +0100
commit002bc4886b3f8af75b03d364c9599f68463fead1 (patch)
tree13d6b4bc0430e12bfb966ea106918562f723b7f2 /app/src/main/res/layout/drawer_admin_account.xml
parent5290173184bfda87c7337a790d6a31ff061e81e6 (diff)
parent6710ef2e1f04c0b18cfd159b7523b3b4090aacf5 (diff)
Merge branch 'develop'3.10.0
Diffstat (limited to 'app/src/main/res/layout/drawer_admin_account.xml')
-rw-r--r--app/src/main/res/layout/drawer_admin_account.xml15
1 files changed, 11 insertions, 4 deletions
diff --git a/app/src/main/res/layout/drawer_admin_account.xml b/app/src/main/res/layout/drawer_admin_account.xml
index 11be13127..2b5152947 100644
--- a/app/src/main/res/layout/drawer_admin_account.xml
+++ b/app/src/main/res/layout/drawer_admin_account.xml
@@ -1,16 +1,23 @@
<?xml version="1.0" encoding="utf-8"?>
-<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:id="@+id/admin_account_container"
+<com.google.android.material.card.MaterialCardView xmlns:android="http://schemas.android.com/apk/res/android"
+ xmlns:app="http://schemas.android.com/apk/res-auto"
+ android:id="@+id/cardview_container"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginHorizontal="6dp"
- android:layout_marginTop="6dp">
+ android:layout_marginTop="6dp"
+ android:clipChildren="false"
+ android:clipToPadding="false"
+ app:cardElevation="0dp"
+ app:strokeWidth="0dp">
<View
+ android:id="@+id/divider_card"
android:layout_width="match_parent"
android:layout_height="1px"
android:background="?colorOutline" />
+
<androidx.appcompat.widget.LinearLayoutCompat
android:layout_width="match_parent"
android:layout_height="wrap_content"
@@ -140,5 +147,5 @@
</androidx.appcompat.widget.LinearLayoutCompat>
</androidx.appcompat.widget.LinearLayoutCompat>
</androidx.appcompat.widget.LinearLayoutCompat>
-</RelativeLayout>
+</com.google.android.material.card.MaterialCardView>