张海江
2017-07-26 8dcf4645301af81d39bbcb936b52eb8f904352e8
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:padding="@dimen/x12">
    <TextView
        android:id="@+id/tv_name"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:textSize="16sp"
        android:layout_centerVertical="true"
        android:textColor="@color/dark_gray_txt"
        android:text="铃声"/>
    <ImageView
        android:id="@+id/iv_set"
        android:layout_width="@dimen/x20"
        android:layout_height="@dimen/x20"
        android:padding="@dimen/x4"
        android:layout_alignParentRight="true"
        android:layout_centerVertical="true"
        android:src="@mipmap/icon_unset"/>
    <ImageView
        android:id="@+id/iv_play"
        android:layout_width="@dimen/x20"
        android:layout_height="@dimen/x20"
        android:padding="@dimen/x4"
        android:layout_centerVertical="true"
        android:layout_toLeftOf="@+id/iv_set"
        android:layout_marginRight="@dimen/x16"
        android:src="@mipmap/icon_play"/>
</RelativeLayout>