Rev 353 | Details | Compare with Previous | Last modification | View Log | RSS feed
| Rev | Author | Line No. | Line |
|---|---|---|---|
| 345 | chris | 1 | <?xml version="1.0" encoding="utf-8"?> |
| 354 | chris | 2 | <RelativeLayout |
| 3 | xmlns:android="http://schemas.android.com/apk/res/android" |
||
| 4 | android:id="@+id/layout" |
||
| 5 | android:layout_width="match_parent" |
||
| 345 | chris | 6 | android:layout_height="match_parent" |
| 347 | chris | 7 | android:layout_margin="2dip" |
| 353 | chris | 8 | android:background="@drawable/bg" |
| 354 | chris | 9 | > |
| 10 | |||
| 347 | chris | 11 | |
| 345 | chris | 12 | |
| 351 | chris | 13 | <ImageView |
| 14 | android:id="@+id/timeview" |
||
| 354 | chris | 15 | android:layout_width="wrap_content" |
| 16 | android:layout_height="fill_parent" |
||
| 17 | android:layout_alignParentLeft="true" |
||
| 353 | chris | 18 | android:layout_gravity="left|center_vertical" |
| 354 | chris | 19 | android:scaleType="center" /> |
| 353 | chris | 20 | |
| 354 | chris | 21 | |
| 353 | chris | 22 | |
| 23 | <ImageView |
||
| 24 | android:id="@+id/dateview" |
||
| 354 | chris | 25 | android:layout_width="wrap_content" |
| 26 | android:layout_height="fill_parent" |
||
| 27 | android:layout_alignParentRight="true" |
||
| 353 | chris | 28 | android:layout_gravity="right|center_vertical" |
| 354 | chris | 29 | android:scaleType="center" /> |
| 348 | chris | 30 | |
| 354 | chris | 31 | </RelativeLayout> |
| 353 | chris | 32 |