diff options
author | Iván Ávalos <avalos@disroot.org> | 2022-01-24 14:51:58 -0600 |
---|---|---|
committer | Iván Ávalos <avalos@disroot.org> | 2022-01-24 14:51:58 -0600 |
commit | 7f1388bc554a3ee68a1865d2a219395805a79575 (patch) | |
tree | 454b639ce9d2e89454e10c44db4bc2cc624c5935 | |
parent | 7250b2725c1c8f489fe04b86776da0d0b6d0b332 (diff) | |
download | etbsa-trackermap-mobile-7f1388bc554a3ee68a1865d2a219395805a79575.tar.gz etbsa-trackermap-mobile-7f1388bc554a3ee68a1865d2a219395805a79575.tar.bz2 etbsa-trackermap-mobile-7f1388bc554a3ee68a1865d2a219395805a79575.zip |
Set color background to devices_fragment.xml to avoid showing map on background in certain occasions
-rw-r--r-- | androidApp/src/main/res/layout/devices_fragment.xml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/androidApp/src/main/res/layout/devices_fragment.xml b/androidApp/src/main/res/layout/devices_fragment.xml index 1dd1690..6e4db3f 100644 --- a/androidApp/src/main/res/layout/devices_fragment.xml +++ b/androidApp/src/main/res/layout/devices_fragment.xml @@ -2,7 +2,8 @@ <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" - android:layout_height="match_parent"> + android:layout_height="match_parent" + android:background="@color/background"> <androidx.recyclerview.widget.RecyclerView android:id="@+id/devicesList" |