Page MenuHomec4science

report_item.xml
No OneTemporary

File Metadata

Created
Sun, Feb 2, 16:37

report_item.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="wrap_content"
android:orientation="vertical" >
<!-- Main line (date, name) -->
<LinearLayout
android:id="@+id/report_item_line_main"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="horizontal" >
<!-- Report date -->
<TextView
android:id="@+id/report_item_date"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textSize="@dimen/size_line_name"/>
<!-- Lastname -->
<TextView
android:id="@+id/report_item_patient_lastname"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="@dimen/patient_item_spacing_line"
android:textSize="@dimen/size_line_name"
android:textAllCaps="true" />
<!-- Firstname -->
<TextView
android:id="@+id/report_item_patient_firstname"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="@dimen/patient_item_spacing_line"
android:textSize="@dimen/size_line_name" />
</LinearLayout>
<!-- Id and address -->
<LinearLayout
android:id="@+id/report_item_line_details"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@id/report_item_line_main"
android:orientation="horizontal" >
<!-- Patient Id -->
<TextView
android:id="@+id/report_item_patient_id"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textSize="@dimen/size_line_detail" />
</LinearLayout>
</RelativeLayout>

Event Timeline