see_you/layout/participant_layout.xml

24 lines
729 B
XML

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<ImageView
android:id="@+id/smileimage"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:src= "@drawable/smile"/>
<TextView xmlns:android="http://schemas.android.com/apk/res/android"
style="@style/ParticipantStyle"
android:id="@+id/participantName"
android:layout_toRightOf="@id/smileimage"
android:layout_marginLeft="15px"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
/>
</RelativeLayout>