78 lines
2.5 KiB
XML
78 lines
2.5 KiB
XML
<?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/imgvCover"
|
|
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/txtvPosition"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_alignParentLeft="true"
|
|
android:text="left" />
|
|
|
|
<TextView
|
|
android:id="@+id/txtvLength"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_alignParentRight="true"
|
|
android:layout_alignParentTop="true"
|
|
android:text="right" />
|
|
|
|
<TextView
|
|
android:id="@+id/txtvStatus"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_alignParentTop="true"
|
|
android:layout_centerHorizontal="true"
|
|
android:text="TextView"
|
|
android:visibility="invisible" />
|
|
|
|
</RelativeLayout>
|
|
|
|
<SeekBar
|
|
android:id="@+id/sbPosition"
|
|
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> |