diff options
Diffstat (limited to 'res/layout/sound_component_selection_item.xml')
-rw-r--r-- | res/layout/sound_component_selection_item.xml | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/res/layout/sound_component_selection_item.xml b/res/layout/sound_component_selection_item.xml new file mode 100644 index 0000000..693840e --- /dev/null +++ b/res/layout/sound_component_selection_item.xml @@ -0,0 +1,26 @@ +<?xml version="1.0" encoding="utf-8"?> + +<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" + android:orientation="horizontal" + android:layout_width="match_parent" + android:layout_height="wrap_content"> + + <TextView + 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="wrap_content" + android:layout_height="wrap_content" + android:layout_marginEnd="24dp" + android:layout_marginTop="@dimen/component_margin_top" + android:src="@drawable/media_sound__selector_preview"/> + +</LinearLayout>
\ No newline at end of file |