diff options
author | cretin45 <cretin45@gmail.com> | 2015-04-14 17:28:37 -0700 |
---|---|---|
committer | Michael Bestas <mikeioannina@gmail.com> | 2015-04-17 03:44:08 +0300 |
commit | f654deb21764efb32b9c2af0d48c387bb8c733e0 (patch) | |
tree | 1231490b2ce42973e27847d28b60aa6a7a31ae0b /res | |
parent | bfd7ca05454c6f555e228896f1e59223e26eca70 (diff) | |
download | packages_apps_SetupWizard-f654deb21764efb32b9c2af0d48c387bb8c733e0.zip packages_apps_SetupWizard-f654deb21764efb32b9c2af0d48c387bb8c733e0.tar.gz packages_apps_SetupWizard-f654deb21764efb32b9c2af0d48c387bb8c733e0.tar.bz2 |
SetupWizard: Give radio a 10 second chance to come up
Change-Id: Iadd817b200106783dd67edbc5ad03928ce2baa6b
Diffstat (limited to 'res')
-rw-r--r-- | res/layout/choose_data_sim_page.xml | 10 | ||||
-rw-r--r-- | res/layout/mobile_data_settings.xml | 11 |
2 files changed, 19 insertions, 2 deletions
diff --git a/res/layout/choose_data_sim_page.xml b/res/layout/choose_data_sim_page.xml index 67963f2..d470dbd 100644 --- a/res/layout/choose_data_sim_page.xml +++ b/res/layout/choose_data_sim_page.xml @@ -21,6 +21,13 @@ <include layout="@layout/header" /> + <ProgressBar + android:id="@+id/progress" + style="?android:attr/progressBarStyleHorizontal" + android:indeterminateOnly="true" + android:layout_width="match_parent" + android:layout_height="8dp" /> + <FrameLayout android:id="@+id/page" android:layout_width="match_parent" android:layout_height="0dp" @@ -35,7 +42,8 @@ android:orientation="vertical" android:layout_width="match_parent" android:layout_height="wrap_content" - style="@style/PageContent"> + style="@style/PageContent" + android:visibility="gone"> <TextView android:layout_width="match_parent" diff --git a/res/layout/mobile_data_settings.xml b/res/layout/mobile_data_settings.xml index 387c4b7..a74b352 100644 --- a/res/layout/mobile_data_settings.xml +++ b/res/layout/mobile_data_settings.xml @@ -21,6 +21,13 @@ <include layout="@layout/header" /> + <ProgressBar + android:id="@+id/progress" + style="?android:attr/progressBarStyleHorizontal" + android:indeterminateOnly="true" + android:layout_width="match_parent" + android:layout_height="8dp" /> + <FrameLayout android:id="@+id/page" android:layout_width="match_parent" android:layout_height="0dp" @@ -31,10 +38,12 @@ android:fillViewport="true"> <LinearLayout + android:id="@+id/page_view" android:orientation="vertical" android:layout_width="match_parent" android:layout_height="wrap_content" - style="@style/PageContent"> + style="@style/PageContent" + android:visibility="gone"> <TextView android:id="@+id/mobile_data_summary" |