diff options
author | fhuya <fhuya@google.com> | 2019-09-02 17:31:51 -0700 |
---|---|---|
committer | fhuya <fhuya@google.com> | 2019-09-04 16:20:22 -0700 |
commit | 7fabfd402f235ebcf64cfde3b399b8b62b969243 (patch) | |
tree | 99bb4eacc7828bedae43316f7415091de9782922 /platform/android/java/res/layout/downloading_expansion.xml | |
parent | ba854bbc7bb0eae230299de4da8dfcb7caf74b69 (diff) |
Split the Android platform java logic into an Android library module (`lib`) and an application module (`app`).
The application module `app` serves double duties of providing the prebuilt Godot binaries ('android_debug.apk', 'android_release.apk') and the Godot custom build template ('android_source.zip').
Diffstat (limited to 'platform/android/java/res/layout/downloading_expansion.xml')
-rw-r--r-- | platform/android/java/res/layout/downloading_expansion.xml | 165 |
1 files changed, 0 insertions, 165 deletions
diff --git a/platform/android/java/res/layout/downloading_expansion.xml b/platform/android/java/res/layout/downloading_expansion.xml deleted file mode 100644 index 4a9700965f..0000000000 --- a/platform/android/java/res/layout/downloading_expansion.xml +++ /dev/null @@ -1,165 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" - android:layout_width="match_parent" - android:layout_height="match_parent" - android:orientation="vertical" > - - <LinearLayout - android:layout_width="match_parent" - android:layout_height="wrap_content" - android:layout_weight="0" - android:orientation="vertical" > - - <TextView - android:id="@+id/statusText" - android:layout_width="match_parent" - android:layout_height="wrap_content" - android:layout_marginBottom="10dp" - android:layout_marginStart="5dp" - android:layout_marginTop="10dp" - android:textStyle="bold" /> - - <LinearLayout - android:id="@+id/downloaderDashboard" - android:layout_width="fill_parent" - android:layout_height="wrap_content" - android:orientation="vertical" > - - <RelativeLayout - android:layout_width="match_parent" - android:layout_height="0dp" - android:layout_weight="1" > - - <TextView - android:id="@+id/progressAsFraction" - style="@android:style/TextAppearance.Small" - android:layout_width="wrap_content" - android:layout_height="wrap_content" - android:layout_alignParentStart="true" - android:layout_marginStart="5dp" /> - - <TextView - android:id="@+id/progressAsPercentage" - style="@android:style/TextAppearance.Small" - android:layout_width="wrap_content" - android:layout_height="wrap_content" - android:layout_alignEnd="@+id/progressBar" /> - - <ProgressBar - android:id="@+id/progressBar" - style="?android:attr/progressBarStyleHorizontal" - android:layout_width="match_parent" - android:layout_height="wrap_content" - android:layout_below="@+id/progressAsFraction" - android:layout_marginBottom="10dp" - android:layout_marginLeft="10dp" - android:layout_marginRight="10dp" - android:layout_marginTop="10dp" /> - - <TextView - android:id="@+id/progressAverageSpeed" - style="@android:style/TextAppearance.Small" - android:layout_width="wrap_content" - android:layout_height="wrap_content" - android:layout_alignParentStart="true" - android:layout_below="@+id/progressBar" - android:layout_marginStart="5dp" /> - - <TextView - android:id="@+id/progressTimeRemaining" - style="@android:style/TextAppearance.Small" - android:layout_width="wrap_content" - android:layout_height="wrap_content" - android:layout_alignEnd="@+id/progressBar" - android:layout_below="@+id/progressBar" /> - </RelativeLayout> - - <LinearLayout - android:id="@+id/downloadButton" - android:layout_width="fill_parent" - android:layout_height="wrap_content" - android:orientation="horizontal" > - - <Button - android:id="@+id/cancelButton" - android:layout_width="wrap_content" - android:layout_height="wrap_content" - android:layout_gravity="center_vertical" - android:layout_marginBottom="10dp" - android:layout_marginLeft="5dp" - android:layout_marginRight="5dp" - android:layout_marginTop="10dp" - android:layout_weight="0" - android:minHeight="40dp" - android:minWidth="94dp" - android:text="@string/text_button_cancel" - android:visibility="gone" - style="?android:attr/buttonBarButtonStyle" /> - - <Button - android:id="@+id/pauseButton" - android:layout_width="wrap_content" - android:layout_height="wrap_content" - android:layout_gravity="center_vertical" - android:layout_marginBottom="10dp" - android:layout_marginStart="10dp" - android:layout_marginEnd="5dp" - android:layout_marginTop="10dp" - android:layout_weight="0" - android:minHeight="40dp" - android:minWidth="94dp" - android:text="@string/text_button_pause" - style="?android:attr/buttonBarButtonStyle" /> - </LinearLayout> - </LinearLayout> - </LinearLayout> - - <LinearLayout - android:id="@+id/approveCellular" - android:layout_width="match_parent" - android:layout_height="match_parent" - android:layout_weight="1" - android:orientation="vertical" - android:visibility="gone" > - - <TextView - android:layout_width="match_parent" - android:layout_height="wrap_content" - android:layout_margin="10dp" - android:id="@+id/textPausedParagraph1" - android:text="@string/text_paused_cellular" /> - - <TextView - android:layout_width="match_parent" - android:layout_height="wrap_content" - android:layout_margin="10dp" - android:id="@+id/textPausedParagraph2" - android:text="@string/text_paused_cellular_2" /> - - <LinearLayout - android:id="@+id/buttonRow" - android:layout_width="match_parent" - android:layout_height="wrap_content" - android:orientation="horizontal" > - - <Button - android:id="@+id/resumeOverCellular" - android:layout_width="wrap_content" - android:layout_height="wrap_content" - android:layout_gravity="center" - android:layout_margin="10dp" - android:text="@string/text_button_resume_cellular" - style="?android:attr/buttonBarButtonStyle" /> - - <Button - android:id="@+id/wifiSettingsButton" - android:layout_width="wrap_content" - android:layout_height="wrap_content" - android:layout_gravity="center" - android:layout_margin="10dp" - android:text="@string/text_button_wifi_settings" - style="?android:attr/buttonBarButtonStyle" /> - </LinearLayout> - </LinearLayout> - -</LinearLayout>
\ No newline at end of file |