AntennaPod/res/layout/mediaplayer_activity.xml

157 lines
6.0 KiB
XML
Raw Normal View History

2012-06-04 21:39:27 +02:00
<?xml version="1.0" encoding="utf-8"?>
2012-06-27 20:38:55 +02:00
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
2012-06-04 21:39:27 +02:00
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="?attr/non_transparent_background"
2012-06-04 21:39:27 +02:00
android:orientation="vertical" >
<RelativeLayout
android:id="@+id/navBar"
2012-07-01 18:32:52 +02:00
android:layout_width="fill_parent"
android:layout_height="60dp"
android:layout_alignParentTop="true" >
<ImageButton
android:id="@+id/butNavLeft"
android:layout_width="60dp"
android:layout_height="match_parent"
android:layout_alignParentLeft="true"
android:background="?attr/borderless_button"
android:src="?attr/default_cover" />
<ImageButton
android:id="@+id/butNavRight"
android:layout_width="60dp"
android:layout_height="match_parent"
android:layout_alignParentRight="true"
android:background="?attr/borderless_button"
android:src="?attr/default_cover" />
<TextView
android:id="@+id/txtvTitle"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_marginLeft="8dp"
android:layout_marginRight="8dp"
android:layout_marginTop="8dp"
android:layout_toLeftOf="@id/butNavRight"
android:layout_toRightOf="@id/butNavLeft"
android:ellipsize="marquee"
android:marqueeRepeatLimit="marquee_forever"
android:maxLines="1"
android:textColor="?android:attr/textColorPrimary"
android:textSize="@dimen/text_size_medium"
android:textStyle="bold" />
<TextView
android:id="@+id/txtvFeed"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@id/txtvTitle"
android:layout_marginLeft="8dp"
android:layout_marginRight="8dp"
android:layout_toLeftOf="@id/butNavRight"
android:layout_toRightOf="@id/butNavLeft"
android:ellipsize="marquee"
android:marqueeRepeatLimit="marquee_forever"
android:maxLines="1"
android:textColor="?android:attr/textColorSecondary"
android:textSize="@dimen/text_size_small" />
</RelativeLayout>
<View
android:layout_width="match_parent"
android:layout_height="1dp"
android:layout_below="@id/navBar"
android:background="@color/bright_blue" />
2012-06-22 16:05:59 +02:00
2013-02-01 23:59:02 +01:00
<RelativeLayout
2012-06-04 21:39:27 +02:00
android:id="@+id/player_control"
android:layout_width="match_parent"
2012-07-14 20:26:47 +02:00
android:layout_height="60dp"
android:layout_alignParentBottom="true"
2013-02-01 23:59:02 +01:00
android:background="?attr/overlay_background" >
2012-06-22 16:05:59 +02:00
2012-06-04 21:39:27 +02:00
<ImageButton
android:id="@+id/butPlay"
2013-02-01 23:59:02 +01:00
android:layout_width="60dp"
2012-06-04 21:39:27 +02:00
android:layout_height="match_parent"
2013-02-01 23:59:02 +01:00
android:layout_centerHorizontal="true"
android:layout_marginLeft="8dp"
android:layout_marginRight="8dp"
android:background="?attr/borderless_button"
android:src="?attr/av_pause" />
2012-06-04 21:39:27 +02:00
2013-02-01 23:59:02 +01:00
<ImageButton
android:id="@+id/butRev"
android:layout_width="60dp"
2012-06-22 16:05:59 +02:00
android:layout_height="match_parent"
2013-02-01 23:59:02 +01:00
android:layout_toLeftOf="@id/butPlay"
android:background="?attr/borderless_button"
android:src="?attr/av_rewind" />
2012-06-22 16:05:59 +02:00
2012-06-04 21:39:27 +02:00
<ImageButton
android:id="@+id/butFF"
2013-02-01 23:59:02 +01:00
android:layout_width="60dp"
2012-06-04 21:39:27 +02:00
android:layout_height="match_parent"
2013-02-01 23:59:02 +01:00
android:layout_toRightOf="@id/butPlay"
android:background="?attr/borderless_button"
android:src="?attr/av_fast_forward" />
2013-02-01 23:59:02 +01:00
</RelativeLayout>
2012-06-27 20:38:55 +02:00
<RelativeLayout
android:id="@+id/playtime_layout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
2013-02-01 23:59:02 +01:00
android:layout_above="@id/player_control"
2012-07-14 20:26:47 +02:00
android:layout_alignParentLeft="true"
2013-02-01 23:59:02 +01:00
android:background="?attr/overlay_drawable" >
2012-06-27 20:38:55 +02:00
<TextView
android:id="@+id/txtvPosition"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
2013-02-01 23:59:02 +01:00
android:layout_centerVertical="true"
android:layout_marginLeft="8dp"
android:layout_marginTop="16dp"
android:text="@string/position_default_label"
android:textColor="?android:attr/textColorSecondary"
android:textSize="@dimen/text_size_micro" />
2012-06-27 20:38:55 +02:00
<TextView
android:id="@+id/txtvLength"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_alignParentTop="true"
2013-02-01 23:59:02 +01:00
android:layout_centerVertical="true"
android:layout_marginRight="8dp"
android:layout_marginTop="16dp"
android:text="@string/position_default_label"
android:textColor="?android:attr/textColorSecondary"
android:textSize="@dimen/text_size_micro" />
<SeekBar
android:id="@+id/sbPosition"
android:layout_width="0dp"
2012-06-27 20:38:55 +02:00
android:layout_height="wrap_content"
2013-02-01 23:59:02 +01:00
android:layout_centerVertical="true"
android:layout_marginLeft="8dp"
android:layout_marginRight="8dp"
android:layout_marginTop="16dp"
android:layout_toLeftOf="@id/txtvLength"
android:layout_toRightOf="@id/txtvPosition"
android:max="500" />
2012-06-27 20:38:55 +02:00
</RelativeLayout>
<FrameLayout
android:id="@+id/contentView"
2012-07-01 18:32:52 +02:00
android:layout_width="match_parent"
android:layout_height="0px"
android:layout_above="@id/playtime_layout"
android:layout_below="@id/navBar" >
</FrameLayout>
2012-07-01 18:32:52 +02:00
2012-06-27 20:38:55 +02:00
</RelativeLayout>