|
|
@@ -0,0 +1,82 @@
|
|
|
+<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
+ xmlns:tools="http://schemas.android.com/tools"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="match_parent"
|
|
|
+ android:background="#000000" >
|
|
|
+
|
|
|
+ <ImageView
|
|
|
+ android:layout_width="fill_parent"
|
|
|
+ android:layout_height="match_parent"
|
|
|
+ android:alpha="0.6"
|
|
|
+ android:scaleType="centerCrop"
|
|
|
+ android:src="@drawable/bg_yingtang_music" />
|
|
|
+
|
|
|
+ <RelativeLayout
|
|
|
+ android:id="@+id/bottom"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="120dp"
|
|
|
+ android:layout_alignParentBottom="true"
|
|
|
+ android:orientation="vertical" >
|
|
|
+
|
|
|
+ <LinearLayout
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="90dp"
|
|
|
+ android:layout_alignParentBottom="true"
|
|
|
+ android:gravity="center"
|
|
|
+ android:orientation="horizontal"
|
|
|
+ android:paddingBottom="5dp"
|
|
|
+ android:paddingLeft="20dp" >
|
|
|
+
|
|
|
+ <Button
|
|
|
+ android:id="@+id/btnPlay"
|
|
|
+ android:layout_width="30dp"
|
|
|
+ android:layout_height="30dp"
|
|
|
+ android:textColor="@android:color/transparent"
|
|
|
+ android:background="@drawable/selector_btn"
|
|
|
+ android:text="play" />
|
|
|
+
|
|
|
+ <include
|
|
|
+ android:id="@+id/include_lrc_seekbar"
|
|
|
+ android:visibility="gone"
|
|
|
+ layout="@layout/seekbar" />
|
|
|
+ </LinearLayout>
|
|
|
+ <RelativeLayout
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content">
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/tv_timeStart"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginLeft="10dp"
|
|
|
+ android:layout_centerVertical="true"
|
|
|
+ android:text="00:00" />
|
|
|
+ <include
|
|
|
+ android:id="@+id/include_player_seekbar"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="20dp"
|
|
|
+ android:layout_centerVertical="true"
|
|
|
+ android:layout_toEndOf="@+id/tv_timeStart"
|
|
|
+ android:layout_toRightOf="@+id/tv_timeStart"
|
|
|
+ layout="@layout/seekbar" />
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/tv_timeTotal"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_centerVertical="true"
|
|
|
+ android:layout_marginRight="5dp"
|
|
|
+ android:layout_toRightOf="@+id/include_player_seekbar"
|
|
|
+ android:text="00:00" />
|
|
|
+ </RelativeLayout>
|
|
|
+ </RelativeLayout>
|
|
|
+
|
|
|
+ <com.lg.lrcview_master.LrcView
|
|
|
+ android:id="@+id/lrcView"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="match_parent"
|
|
|
+ android:layout_above="@id/bottom"
|
|
|
+ android:layout_marginLeft="30dp"
|
|
|
+ android:layout_marginRight="30dp"
|
|
|
+ android:layout_marginBottom="10dp"/>
|
|
|
+
|
|
|
+</RelativeLayout>
|