summaryrefslogtreecommitdiffstats
path: root/res/layout/sound_component_selection_item.xml
blob: e13c47c5ff2b4634f7c633465b784e56696529d9 (plain)
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
<?xml version="1.0" encoding="utf-8"?>
<!--
     Copyright (C) 2014 Cyanogen, Inc.
-->
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="horizontal"
    android:layout_width="match_parent"
    android:layout_height="wrap_content">

    <com.cyngn.theme.widget.LatoTextView
        android:id="@+id/title"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:layout_marginStart="24dp"
        android:layout_marginTop="@dimen/component_margin_top"
        android:gravity="center_vertical"
        style="@style/component_sound_title"/>

    <ImageView
        android:id="@+id/play_button"
        android:layout_width="40dp"
        android:layout_height="40dp"
        android:padding="8dp"
        android:layout_marginEnd="24dp"
        android:layout_marginTop="@dimen/component_margin_top"
        android:src="@drawable/media_sound_selector_preview"/>

</LinearLayout>