summaryrefslogtreecommitdiffstats
path: root/res/layout-w480dp/manage_offline_bar.xml
diff options
context:
space:
mode:
Diffstat (limited to 'res/layout-w480dp/manage_offline_bar.xml')
-rw-r--r--res/layout-w480dp/manage_offline_bar.xml57
1 files changed, 57 insertions, 0 deletions
diff --git a/res/layout-w480dp/manage_offline_bar.xml b/res/layout-w480dp/manage_offline_bar.xml
new file mode 100644
index 000000000..d44ecf09f
--- /dev/null
+++ b/res/layout-w480dp/manage_offline_bar.xml
@@ -0,0 +1,57 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2010 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.
+-->
+<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
+ android:background="@drawable/manage_bar">
+ <LinearLayout android:id="@+id/cache_bar"
+ android:gravity="center_vertical"
+ android:orientation="horizontal"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content">
+ <TextView android:layout_width="wrap_content"
+ android:paddingLeft="2dp"
+ android:layout_height="wrap_content"
+ android:gravity="center_vertical|left"
+ android:drawablePadding="3dp"
+ android:text="@string/make_available_offline"
+ android:drawableLeft="@drawable/ic_manage_pin"/>
+ <ProgressBar android:id="@+id/progress"
+ style="?android:attr/progressBarStyleHorizontal"
+ android:max="100"
+ android:progress="30"
+ android:secondaryProgress="65"
+ android:layout_marginLeft="5dp"
+ android:layout_marginRight="5dp"
+ android:layout_weight="1"
+ android:layout_width="match_parent"
+ android:layout_height="10dp"/>
+ <TextView android:id="@+id/status"
+ android:paddingRight="2dp"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"/>
+ <View android:layout_width="2dp"
+ android:layout_height="match_parent"
+ android:background="@android:drawable/divider_horizontal_dark" />
+ <Button android:id="@+id/done"
+ style="?android:attr/borderlessButtonStyle"
+ android:text="@string/done"
+ android:layout_weight="0"
+ android:layout_alignParentBottom="true"
+ android:layout_alignParentLeft="true"
+ android:layout_alignParentRight="true"
+ android:layout_width="wrap_content"
+ android:layout_height="match_parent"/>
+ </LinearLayout>
+</FrameLayout>