diff options
Diffstat (limited to 'platform/android/java/res/layout')
-rw-r--r-- | platform/android/java/res/layout/downloading_expansion.xml | 165 | ||||
-rw-r--r-- | platform/android/java/res/layout/status_bar_ongoing_event_progress_bar.xml | 108 |
2 files changed, 0 insertions, 273 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 diff --git a/platform/android/java/res/layout/status_bar_ongoing_event_progress_bar.xml b/platform/android/java/res/layout/status_bar_ongoing_event_progress_bar.xml deleted file mode 100644 index fae1faeb60..0000000000 --- a/platform/android/java/res/layout/status_bar_ongoing_event_progress_bar.xml +++ /dev/null @@ -1,108 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- -/* -** Copyright 2008, The Android Open Source Project -** -** Licensed under the Apache License, Version 2.0 (the "License"); -** you may not use this file except in compliance with the License. -** You may obtain a copy of the License at -** -** http://www.apache.org/licenses/LICENSE-2.0 -** -** Unless required by applicable law or agreed to in writing, software -** distributed under the License is distributed on an "AS IS" BASIS, -** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -** See the License for the specific language governing permissions and -** limitations under the License. -*/ ---> - -<LinearLayout xmlns:tools="http://schemas.android.com/tools" - android:layout_width="match_parent" - android:layout_height="match_parent" - android:baselineAligned="false" - android:orientation="horizontal" android:id="@+id/notificationLayout" xmlns:android="http://schemas.android.com/apk/res/android"> - - <RelativeLayout - android:layout_width="35dp" - android:layout_height="fill_parent" - android:paddingTop="10dp" - android:paddingBottom="8dp" > - - <ImageView - android:id="@+id/appIcon" - android:layout_width="fill_parent" - android:layout_height="25dp" - android:scaleType="centerInside" - android:layout_alignParentStart="true" - android:layout_alignParentTop="true" - android:src="@android:drawable/stat_sys_download" - android:contentDescription="@string/godot_project_name_string" /> - - <TextView - android:id="@+id/progress_text" - style="@style/NotificationText" - android:layout_width="fill_parent" - android:layout_height="wrap_content" - android:layout_alignParentStart="true" - android:layout_alignParentBottom="true" - android:layout_gravity="center_horizontal" - android:singleLine="true" - android:gravity="center" /> - </RelativeLayout> - - <RelativeLayout - android:layout_width="0dip" - android:layout_height="match_parent" - android:layout_weight="1.0" - android:clickable="true" - android:focusable="true" - android:paddingTop="10dp" - android:paddingEnd="8dp" - android:paddingBottom="8dp" - tools:ignore="RtlSymmetry"> - - <TextView - android:id="@+id/title" - style="@style/NotificationTitle" - android:layout_width="wrap_content" - android:layout_height="wrap_content" - android:layout_alignParentStart="true" - android:singleLine="true"/> - - <TextView - android:id="@+id/time_remaining" - style="@style/NotificationText" - android:layout_width="wrap_content" - android:layout_height="wrap_content" - android:layout_alignParentEnd="true" - android:singleLine="true" - tools:ignore="RelativeOverlap" /> - <!-- Only one of progress_bar and paused_text will be visible. --> - - <FrameLayout - android:id="@+id/progress_bar_frame" - android:layout_width="fill_parent" - android:layout_height="wrap_content" - android:layout_alignParentBottom="true" > - - <ProgressBar - android:id="@+id/progress_bar" - style="?android:attr/progressBarStyleHorizontal" - android:layout_width="fill_parent" - android:layout_height="wrap_content" - android:paddingEnd="25dp" /> - - <TextView - android:id="@+id/description" - style="@style/NotificationTextShadow" - android:layout_width="wrap_content" - android:layout_height="wrap_content" - android:layout_gravity="center" - android:paddingEnd="25dp" - android:singleLine="true" /> - </FrameLayout> - - </RelativeLayout> - -</LinearLayout>
\ No newline at end of file |