aboutsummaryrefslogtreecommitdiff
path: root/res/layout/download_slider.xml
diff options
context:
space:
mode:
authorScott Jackson <daneren2005@gmail.com>2013-07-27 14:36:03 -0700
committerScott Jackson <daneren2005@gmail.com>2013-07-27 14:36:03 -0700
commitfc19957642783f8d6f65e9eb24d89efcf9c900eb (patch)
tree342a8f3af72b050a2f7dbd6f089bca8c11cfb0c1 /res/layout/download_slider.xml
parent4738428c2c205f42200386ae09b44b9ec07b9144 (diff)
downloaddsub-fc19957642783f8d6f65e9eb24d89efcf9c900eb.tar.gz
dsub-fc19957642783f8d6f65e9eb24d89efcf9c900eb.tar.bz2
dsub-fc19957642783f8d6f65e9eb24d89efcf9c900eb.zip
Missed in commit
Diffstat (limited to 'res/layout/download_slider.xml')
-rw-r--r--res/layout/download_slider.xml42
1 files changed, 42 insertions, 0 deletions
diff --git a/res/layout/download_slider.xml b/res/layout/download_slider.xml
new file mode 100644
index 00000000..d4998eea
--- /dev/null
+++ b/res/layout/download_slider.xml
@@ -0,0 +1,42 @@
+<?xml version="1.0" encoding="utf-8"?>
+<RelativeLayout
+ xmlns:android="http://schemas.android.com/apk/res/android"
+ android:layout_height="wrap_content"
+ android:layout_width="fill_parent"
+ android:background="@android:color/transparent"
+ android:paddingBottom="10dip">
+
+ <TextView
+ android:id="@+id/download_position"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:layout_alignParentLeft="true"
+ android:layout_centerVertical="true"
+ android:paddingLeft="8dip"
+ android:text="0:00"
+ android:textSize="12sp"
+ android:textColor="?android:textColorPrimary"
+ android:paddingBottom="4dip"/>
+
+ <SeekBar
+ android:id="@+id/download_progress_bar"
+ android:layout_width="fill_parent"
+ android:layout_height="wrap_content"
+ android:indeterminate="false"
+ android:paddingLeft="55dip"
+ android:paddingRight="55dip"
+ android:paddingTop="3dip"
+ android:paddingBottom="7dip" />
+
+ <TextView
+ android:id="@+id/download_duration"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:layout_alignParentRight="true"
+ android:layout_centerVertical="true"
+ android:paddingRight="8dip"
+ android:text="-:--"
+ android:textSize="12sp"
+ android:textColor="?android:textColorPrimary"
+ android:paddingBottom="4dip"/>
+</RelativeLayout> \ No newline at end of file