43 lines
1.7 KiB
XML
43 lines
1.7 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:id="@+id/rl_info_layout"
|
|
android:background="@color/translucent"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="@dimen/dp120"
|
|
android:layout_alignParentBottom="true">
|
|
<View
|
|
android:id="@+id/view_background"
|
|
android:background="#cc1d2c42"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"/>
|
|
<LinearLayout
|
|
android:orientation="vertical"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_centerInParent="true">
|
|
<TextView
|
|
android:textSize="@dimen/dp20"
|
|
android:textColor="@color/bg_white"
|
|
android:ellipsize="end"
|
|
android:id="@+id/tv_play_title"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginLeft="@dimen/dp32"
|
|
android:layout_marginRight="@dimen/dp32"
|
|
android:text=""
|
|
android:maxLines="2"
|
|
android:minLines="2"/>
|
|
<ProgressBar
|
|
android:id="@+id/play_progress"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="@dimen/dp15"
|
|
android:layout_marginLeft="@dimen/dp32"
|
|
android:layout_marginTop="@dimen/dp30"
|
|
android:layout_marginRight="@dimen/dp32"
|
|
android:max="1000"
|
|
android:progress="0"
|
|
android:progressDrawable="@drawable/play_progress"
|
|
style="@style/Widget.AppCompat.ProgressBar.Horizontal"/>
|
|
</LinearLayout>
|
|
</RelativeLayout>
|