diff options
author | Iván Ávalos <avalos@disroot.org> | 2021-12-30 18:13:49 -0600 |
---|---|---|
committer | Iván Ávalos <avalos@disroot.org> | 2021-12-30 18:13:49 -0600 |
commit | 964820d1e4416fd1d36e100f39ecc15bab480e90 (patch) | |
tree | 8f8a73707155aba915842fb5ae1d17785cea4824 /androidApp/src/main/res/layout | |
parent | a0e16d47a97c27cb84d6e4d5e626b99c0e08081a (diff) | |
download | etbsa-trackermap-mobile-964820d1e4416fd1d36e100f39ecc15bab480e90.tar.gz etbsa-trackermap-mobile-964820d1e4416fd1d36e100f39ecc15bab480e90.tar.bz2 etbsa-trackermap-mobile-964820d1e4416fd1d36e100f39ecc15bab480e90.zip |
Accessibility fixes and removed bindings from MapFragment
Diffstat (limited to 'androidApp/src/main/res/layout')
-rw-r--r-- | androidApp/src/main/res/layout/units_activity.xml | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/androidApp/src/main/res/layout/units_activity.xml b/androidApp/src/main/res/layout/units_activity.xml index f0d80ab..bff3789 100644 --- a/androidApp/src/main/res/layout/units_activity.xml +++ b/androidApp/src/main/res/layout/units_activity.xml @@ -1,6 +1,7 @@ <?xml version="1.0" encoding="utf-8"?> <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" xmlns:app="http://schemas.android.com/apk/res-auto"> @@ -26,7 +27,9 @@ app:fabSize="mini" android:layout_marginStart="@dimen/fab_margin" android:layout_marginTop="@dimen/fab_margin" - app:elevation="@dimen/fab_elevation"/> + app:elevation="@dimen/fab_elevation" + android:src="@drawable/ic_baseline_menu_24" + android:contentDescription="@string/open_drawer"/> <com.google.android.material.card.MaterialCardView android:layout_width="0dp" @@ -64,6 +67,7 @@ app:fabSize="mini" android:layout_marginEnd="@dimen/fab_margin" android:layout_marginTop="@dimen/fab_margin" - app:elevation="@dimen/fab_elevation"/> + app:elevation="@dimen/fab_elevation" + tools:ignore="ContentDescription" /> </androidx.constraintlayout.widget.ConstraintLayout>
\ No newline at end of file |