2012-07-05 13:01:25 -04:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2012-07-10 13:13:22 -04:00
|
|
|
android:layout_width="fill_parent"
|
2012-07-05 13:01:25 -04:00
|
|
|
android:layout_height="fill_parent"
|
2012-08-16 16:55:28 -04:00
|
|
|
android:orientation="vertical"
|
|
|
|
android:background="@color/item_background" >
|
2012-07-10 13:13:22 -04:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:padding="10dp"
|
|
|
|
android:textColor="@color/white"
|
|
|
|
android:textSize="16dp"
|
|
|
|
android:textStyle="bold"
|
2012-08-16 16:55:28 -04:00
|
|
|
android:background="@drawable/list_background"
|
2012-07-10 13:13:22 -04:00
|
|
|
android:text="@string/profile_recent_actvity" />
|
|
|
|
|
|
|
|
<ListView
|
|
|
|
android:id="@+id/profile_details_activitylist"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="fill_parent"
|
2012-08-16 16:55:28 -04:00
|
|
|
android:background="@color/item_background"
|
|
|
|
android:divider="@drawable/divider_light"
|
|
|
|
android:dividerHeight="3dp" />
|
2012-07-05 13:01:25 -04:00
|
|
|
|
|
|
|
</LinearLayout>
|