media_controller.xml 3.02 KB
<?xml version="1.0" encoding="utf-8"?>
	<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
	 android:id="@+id/float_window" android:background="#aa0E0E0E"
		android:layout_width="fill_parent" android:orientation="horizontal"
		android:layout_height="wrap_content"
		android:layout_alignParentBottom="true">
				  
		<SeekBar android:id="@+id/float_seekBar" 

			android:layout_height="wrap_content" 
			android:layout_width="fill_parent"
			android:layout_centerHorizontal="true"
			android:paddingRight="55dip" 
			android:paddingLeft="55dip" 
			android:paddingTop="10dip"  />
				       
		<TextView android:id="@+id/float_currentTime"
			android:textSize="14sp" 
			android:textStyle="bold"
			android:layout_width="wrap_content" 
			android:layout_height="wrap_content"
			android:layout_alignLeft="@id/float_seekBar"
			android:layout_alignParentLeft="true"
			android:layout_centerHorizontal="true"
			android:paddingTop="10dip"
			android:textColor="#ffffffff" 
			android:text="" />
			
		<TextView android:id="@+id/float_totalTime"
			android:textSize="14sp" 
			android:textStyle="bold"
			android:layout_alignParentRight="true"
			android:layout_alignBaseline="@id/float_seekBar"
			android:layout_width="wrap_content" 
			android:layout_height="wrap_content"
			android:paddingTop="10dip"
			android:textColor="#ffffffff"  
			android:text="" /> 
		
		<ImageButton android:id="@+id/float_play_pause"
		    android:layout_width="wrap_content" 
		    android:layout_height="wrap_content"
		    android:background="@drawable/pause"
		    android:layout_below="@id/float_seekBar"
		    android:layout_marginTop="20dip"
		     android:layout_marginBottom="10dip"
		    android:layout_centerHorizontal="true"
			/>
		  
		<ImageButton android:id="@+id/float_forward"
		    android:layout_width="wrap_content"
		    android:layout_height="wrap_content"
		    android:background="@drawable/forward"
		    android:layout_toRightOf="@id/float_play_pause"
		    android:layout_below="@id/float_seekBar"
		    android:layout_marginTop="22dip"
		    android:layout_marginLeft="35dip"
		     android:layout_marginBottom="10dip"
			/>
		
		<ImageButton android:id="@+id/float_backward"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:background="@drawable/backward"
                    android:layout_toLeftOf="@id/float_play_pause"
                    android:layout_below="@id/float_seekBar"
                    android:layout_marginTop="22dip"
                    android:layout_marginRight="35dip"
                    android:layout_marginBottom="10dip"
			/>
		
		<TextView android:id="@+id/float_curRate"
		    android:layout_width="wrap_content" 
		    android:layout_height="wrap_content"
		    android:layout_toLeftOf="@id/float_backward"
		    android:layout_marginRight="40dip"	
		    android:layout_below="@id/float_seekBar"
		    android:layout_marginTop="22dip"
		    android:layout_marginBottom="10dip"
		    android:textSize="20sp"	    
		    />
	
</RelativeLayout>