diff options
Diffstat (limited to 'app/src/main/res/layout')
-rw-r--r-- | app/src/main/res/layout/fragment_dashboard.xml | 9 | ||||
-rw-r--r-- | app/src/main/res/layout/fragment_internet_activity_policy.xml | 4 |
2 files changed, 11 insertions, 2 deletions
diff --git a/app/src/main/res/layout/fragment_dashboard.xml b/app/src/main/res/layout/fragment_dashboard.xml index 077eaf1..c97d1a5 100644 --- a/app/src/main/res/layout/fragment_dashboard.xml +++ b/app/src/main/res/layout/fragment_dashboard.xml @@ -123,11 +123,18 @@ android:id="@+id/state_ip_address" android:layout_width="wrap_content" android:layout_height="wrap_content" - android:text="@string/dashboard_state_ipaddress_off" +android:text="@string/dashboard_state_ipaddress_off" android:textSize="12sp" android:textColor="@color/black_text" android:textAllCaps="true" + android:visibility="gone" /> + <ProgressBar + android:id="@+id/state_ip_address_loader" + android:layout_width="16dp" + android:layout_height="16dp" + android:indeterminate="true" + android:visibility="visible"/> </LinearLayout> </LinearLayout> diff --git a/app/src/main/res/layout/fragment_internet_activity_policy.xml b/app/src/main/res/layout/fragment_internet_activity_policy.xml index 2c7e102..982b7c4 100644 --- a/app/src/main/res/layout/fragment_internet_activity_policy.xml +++ b/app/src/main/res/layout/fragment_internet_activity_policy.xml @@ -1,4 +1,5 @@ <?xml version="1.0" encoding="utf-8"?> +<layout> <androidx.coordinatorlayout.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:tools="http://schemas.android.com/tools" @@ -179,4 +180,5 @@ /> </LinearLayout> </androidx.core.widget.NestedScrollView> -</androidx.coordinatorlayout.widget.CoordinatorLayout>
\ No newline at end of file +</androidx.coordinatorlayout.widget.CoordinatorLayout> +</layout>
\ No newline at end of file |