2017-05-15 00:57:04 -03:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<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="48dp">
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/wo_sound_icon"
|
|
|
|
android:layout_width="20dp"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:layout_alignParentLeft="true"
|
|
|
|
android:layout_centerVertical="true"
|
|
|
|
android:layout_marginLeft="4dp"
|
|
|
|
android:scaleType="fitCenter"
|
|
|
|
android:src="?attr/volume_off"
|
|
|
|
tools:ignore="ContentDescription,RtlHardcoded"/>
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@android:id/text1"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_centerVertical="true"
|
|
|
|
android:layout_marginLeft="8dp"
|
|
|
|
android:layout_marginRight="8dp"
|
|
|
|
android:layout_toRightOf="@+id/wo_sound_icon"
|
|
|
|
android:ellipsize="end"
|
|
|
|
android:gravity="left"
|
|
|
|
android:maxLines="1"
|
|
|
|
android:textAppearance="@style/TextAppearance.AppCompat.Body1"
|
2017-09-03 03:04:18 -03:00
|
|
|
android:textSize="14sp"
|
2017-05-15 00:57:04 -03:00
|
|
|
tools:ignore="RtlHardcoded"
|
2017-09-03 03:04:18 -03:00
|
|
|
tools:text="MPEG-4 1080p60"/>
|
2017-05-15 00:57:04 -03:00
|
|
|
</RelativeLayout>
|