summaryrefslogtreecommitdiff
path: root/core/src/main/res/layout
diff options
context:
space:
mode:
authorbrad <bradpitcher@gmail.com>2018-05-31 23:10:58 -0700
committerbrad <bradpitcher@gmail.com>2018-05-31 23:10:58 -0700
commitdc113f69b7108abd2d1a399a07788cd1c7e75692 (patch)
treea939df4d3ea3ea2ded909b37014fbcba1ed89a00 /core/src/main/res/layout
parent41b35623eadd5d69c3751b24041f1fcfba6f2450 (diff)
parentb4062146a9458aab796dea2018746d0502b66402 (diff)
downloadAntennaPod-dc113f69b7108abd2d1a399a07788cd1c7e75692.zip
Merge branch 'develop' into fix-2359
Diffstat (limited to 'core/src/main/res/layout')
-rw-r--r--core/src/main/res/layout/player_widget.xml69
1 files changed, 69 insertions, 0 deletions
diff --git a/core/src/main/res/layout/player_widget.xml b/core/src/main/res/layout/player_widget.xml
new file mode 100644
index 000000000..cabebc83f
--- /dev/null
+++ b/core/src/main/res/layout/player_widget.xml
@@ -0,0 +1,69 @@
+<?xml version="1.0" encoding="utf-8"?>
+<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
+ android:layout_width="match_parent"
+ android:layout_height="match_parent"
+ android:padding="@dimen/widget_margin" >
+
+ <RelativeLayout
+ android:layout_width="match_parent"
+ android:layout_height="match_parent"
+ android:background="#262C31" >
+
+ <ImageButton
+ android:id="@+id/butPlay"
+ android:contentDescription="@string/play_label"
+ android:layout_width="72dp"
+ android:layout_height="match_parent"
+ android:layout_alignParentRight="true"
+ android:layout_margin="12dp"
+ android:background="@drawable/borderless_button_dark"
+ android:src="@drawable/ic_play_arrow_white_24dp" />
+
+ <LinearLayout
+ android:id="@+id/layout_left"
+ android:layout_width="0dp"
+ android:layout_height="match_parent"
+ android:layout_alignParentLeft="true"
+ android:layout_toLeftOf="@id/butPlay"
+ android:background="@drawable/borderless_button_dark"
+ android:gravity="fill_horizontal"
+ android:orientation="horizontal" >
+
+ <ImageView
+ android:id="@+id/imgvCover"
+ android:layout_width="72dp"
+ android:layout_height="match_parent"
+ android:layout_alignParentLeft="true"
+ android:layout_toLeftOf="@id/layout_center"
+ android:layout_margin="12dp" />
+
+ <LinearLayout
+ android:id="@+id/layout_center"
+ android:layout_width="match_parent"
+ android:layout_height="match_parent"
+ android:layout_alignParentRight="true"
+ android:gravity="center_vertical"
+ android:orientation="vertical" >
+
+ <TextView
+ android:id="@+id/txtvTitle"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:layout_marginVertical="8dp"
+ android:maxLines="1"
+ android:text="@string/no_media_playing_label"
+ android:textColor="@color/white"
+ android:textSize="@dimen/text_size_medium"
+ android:textStyle="bold" />
+
+ <TextView
+ android:id="@+id/txtvProgress"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:layout_marginVertical="8dp"
+ android:textColor="@color/white" />
+ </LinearLayout>
+ </LinearLayout>
+ </RelativeLayout>
+
+</FrameLayout> \ No newline at end of file