diff options
author | Fup Duck <fupduck@sacknagel.com> | 2018-02-09 21:04:13 +0100 |
---|---|---|
committer | Fup Duck <fupduck@sacknagel.com> | 2018-02-09 21:04:13 +0100 |
commit | 69cd8480df05055e8b068bbff563c17d6feb86dd (patch) | |
tree | 4adf59857be5c64c9859a982b2362eeeb35a4c49 /app/src | |
parent | dbcac111161ee1e26f8f81397e8643d081b116ef (diff) |
8554 - show Loading screen on bigger screens
Diffstat (limited to 'app/src')
-rw-r--r-- | app/src/main/res/layout-sw600dp-port/a_provider_credentials.xml | 52 | ||||
-rw-r--r-- | app/src/main/res/layout-xlarge/a_provider_credentials.xml | 52 |
2 files changed, 58 insertions, 46 deletions
diff --git a/app/src/main/res/layout-sw600dp-port/a_provider_credentials.xml b/app/src/main/res/layout-sw600dp-port/a_provider_credentials.xml index 4555343c..0cbb08f6 100644 --- a/app/src/main/res/layout-sw600dp-port/a_provider_credentials.xml +++ b/app/src/main/res/layout-sw600dp-port/a_provider_credentials.xml @@ -43,7 +43,6 @@ app:layout_constraintGuide_percent="0.725" /> <LinearLayout - android:id="@+id/content" android:orientation="vertical" style="@style/BitmaskActivity" android:layout_width="0dp" @@ -61,35 +60,42 @@ <include layout="@layout/loading_screen" /> - <include - layout="@layout/provider_header" + <LinearLayout android:layout_width="match_parent" - android:layout_height="wrap_content" /> + android:layout_height="match_parent" + android:id="@+id/content" + android:orientation="vertical"> + <include + layout="@layout/provider_header" + android:layout_width="match_parent" + android:layout_height="wrap_content" /> - <ScrollView - android:layout_height="match_parent" - android:layout_width="match_parent" - android:isScrollContainer="true" - > - <LinearLayout + <ScrollView + android:layout_height="match_parent" android:layout_width="match_parent" - android:layout_height="wrap_content" - android:orientation="vertical"> - <include - layout="@layout/provider_credentials" - android:layout_width="match_parent" - android:layout_height="wrap_content" /> + android:isScrollContainer="true" + > - <android.support.v7.widget.AppCompatButton - android:id="@+id/button" - android:layout_width="wrap_content" + <LinearLayout + android:layout_width="match_parent" android:layout_height="wrap_content" - android:layout_gravity="end" - android:text="@string/login_button" /> + android:orientation="vertical"> + <include + layout="@layout/provider_credentials" + android:layout_width="match_parent" + android:layout_height="wrap_content" /> + + <android.support.v7.widget.AppCompatButton + android:id="@+id/button" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:layout_gravity="end" + android:text="@string/login_button" /> - </LinearLayout> - </ScrollView> + </LinearLayout> + </ScrollView> + </LinearLayout> </LinearLayout> </android.support.constraint.ConstraintLayout>
\ No newline at end of file diff --git a/app/src/main/res/layout-xlarge/a_provider_credentials.xml b/app/src/main/res/layout-xlarge/a_provider_credentials.xml index 82abb5cb..2184aeb8 100644 --- a/app/src/main/res/layout-xlarge/a_provider_credentials.xml +++ b/app/src/main/res/layout-xlarge/a_provider_credentials.xml @@ -43,7 +43,6 @@ app:layout_constraintGuide_percent="0.85" /> <LinearLayout - android:id="@+id/content" android:orientation="vertical" style="@style/BitmaskActivity" android:layout_width="0dp" @@ -60,35 +59,42 @@ <include layout="@layout/loading_screen" /> - <include - layout="@layout/provider_header" + <LinearLayout android:layout_width="match_parent" - android:layout_height="wrap_content" /> + android:layout_height="match_parent" + android:id="@+id/content" + android:orientation="vertical"> + <include + layout="@layout/provider_header" + android:layout_width="match_parent" + android:layout_height="wrap_content" /> - <ScrollView - android:layout_height="match_parent" - android:layout_width="match_parent" - android:isScrollContainer="true" - > - <LinearLayout + <ScrollView + android:layout_height="match_parent" android:layout_width="match_parent" - android:layout_height="wrap_content" - android:orientation="vertical"> - <include - layout="@layout/provider_credentials" - android:layout_width="match_parent" - android:layout_height="wrap_content" /> + android:isScrollContainer="true" + > - <android.support.v7.widget.AppCompatButton - android:id="@+id/button" - android:layout_width="wrap_content" + <LinearLayout + android:layout_width="match_parent" android:layout_height="wrap_content" - android:layout_gravity="end" - android:text="@string/login_button" /> + android:orientation="vertical"> + <include + layout="@layout/provider_credentials" + android:layout_width="match_parent" + android:layout_height="wrap_content" /> + + <android.support.v7.widget.AppCompatButton + android:id="@+id/button" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:layout_gravity="end" + android:text="@string/login_button" /> - </LinearLayout> - </ScrollView> + </LinearLayout> + </ScrollView> + </LinearLayout> </LinearLayout> </android.support.constraint.ConstraintLayout>
\ No newline at end of file |