diff options
author | Daniel Oeh <daniel@danielpc.(none)> | 2012-06-04 21:39:27 +0200 |
---|---|---|
committer | Daniel Oeh <daniel@danielpc.(none)> | 2012-06-04 21:39:27 +0200 |
commit | ee078c3ac83f490d2c254d04d9421ee668ff65e2 (patch) | |
tree | dd9af4cd1fe44abe98fbb9a2e34e4121eb2b0a72 /res/layout | |
parent | 72e608a04999bf37b0768465602889498b0daf06 (diff) | |
download | AntennaPod-ee078c3ac83f490d2c254d04d9421ee668ff65e2.zip |
Added mediaplayer layout
Diffstat (limited to 'res/layout')
-rw-r--r-- | res/layout/mediaplayer_activity.xml | 69 |
1 files changed, 69 insertions, 0 deletions
diff --git a/res/layout/mediaplayer_activity.xml b/res/layout/mediaplayer_activity.xml new file mode 100644 index 000000000..b5b4d0a58 --- /dev/null +++ b/res/layout/mediaplayer_activity.xml @@ -0,0 +1,69 @@ +<?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:layout_margin="5dp" + android:orientation="vertical" > + + <ImageView + android:id="@+id/imageView1" + android:layout_width="match_parent" + android:layout_height="283dp" + android:layout_weight="0.02" + android:src="@drawable/navigation_cancel" /> + + <RelativeLayout + android:id="@+id/playtime_layout" + android:layout_width="wrap_content" + android:layout_height="wrap_content" > + + <TextView + android:id="@+id/textView3" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:layout_alignParentLeft="true" + android:text="left" /> + + <TextView + android:id="@+id/textView4" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:layout_alignParentRight="true" + android:layout_alignParentTop="true" + android:text="right" /> + + </RelativeLayout> + + <SeekBar + android:id="@+id/seekBar1" + android:layout_width="match_parent" + android:layout_height="wrap_content" /> + + <LinearLayout + android:id="@+id/player_control" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:layout_weight="0.02" > + + <ImageButton + android:id="@+id/butRev" + android:layout_width="wrap_content" + android:layout_height="match_parent" + android:src="@android:drawable/ic_media_rew" /> + + <ImageButton + android:id="@+id/butPlay" + android:layout_width="wrap_content" + android:layout_height="match_parent" + android:layout_weight="8" + android:src="@android:drawable/ic_media_pause" /> + + <ImageButton + android:id="@+id/butFF" + android:layout_width="wrap_content" + android:layout_height="match_parent" + android:src="@android:drawable/ic_media_ff" /> + + </LinearLayout> + +</LinearLayout>
\ No newline at end of file |