23 lines
921 B
XML
23 lines
921 B
XML
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
android:id="@+id/layout"
|
||
|
android:layout_width="fill_parent"
|
||
|
android:layout_height="fill_parent"
|
||
|
android:padding="10dp" >
|
||
|
<ImageView android:id="@+id/image"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="fill_parent"
|
||
|
android:layout_alignParentLeft="true"
|
||
|
android:layout_marginRight="10dp" />
|
||
|
<TextView android:id="@+id/title"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_toRightOf="@id/image"
|
||
|
style="Custom Notification Title" />
|
||
|
<TextView android:id="@+id/text"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_toRightOf="@id/image"
|
||
|
android:layout_below="@id/title"
|
||
|
style="Custom Notification Text" />
|
||
|
</RelativeLayout>
|