diff options
| author | Janito Vaqueiro Ferreira Filho <janito@mullvad.net> | 2020-07-03 01:43:09 +0000 |
|---|---|---|
| committer | Janito Vaqueiro Ferreira Filho <janito@mullvad.net> | 2020-07-15 12:52:17 +0000 |
| commit | 32f7c8beb8aeb402d080ff0438c8b599e9a14b09 (patch) | |
| tree | 51c2fa90c1f44aec0940fda070696ef149b87090 /android/src/main/res/layout | |
| parent | dd2caa1ace19637408570da1409b5b0ea78ba1cc (diff) | |
| download | mullvadvpn-32f7c8beb8aeb402d080ff0438c8b599e9a14b09.tar.xz mullvadvpn-32f7c8beb8aeb402d080ff0438c8b599e9a14b09.zip | |
Show spinner while list is loading
Diffstat (limited to 'android/src/main/res/layout')
| -rw-r--r-- | android/src/main/res/layout/split_tunnelling_header.xml | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/android/src/main/res/layout/split_tunnelling_header.xml b/android/src/main/res/layout/split_tunnelling_header.xml index 48d3e6e831..e6805329e3 100644 --- a/android/src/main/res/layout/split_tunnelling_header.xml +++ b/android/src/main/res/layout/split_tunnelling_header.xml @@ -60,4 +60,14 @@ android:textStyle="bold" android:text="@string/exclude_applications" /> </LinearLayout> + <ProgressBar android:id="@+id/loading_spinner" + android:layout_width="60dp" + android:layout_height="60dp" + android:layout_gravity="center" + android:layout_marginTop="24dp" + android:indeterminate="true" + android:indeterminateOnly="true" + android:indeterminateDuration="600" + android:indeterminateDrawable="@drawable/icon_spinner" + android:visibility="gone" /> </LinearLayout> |
