mirror of
https://github.com/viq/NewsBlur.git
synced 2025-11-01 09:09:16 +00:00
25 lines
No EOL
873 B
XML
25 lines
No EOL
873 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="fill_parent"
|
|
android:background="@color/darkgray"
|
|
android:orientation="vertical" >
|
|
|
|
<TextView
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:padding="10dp"
|
|
android:textColor="@color/white"
|
|
android:textSize="16dp"
|
|
android:textStyle="bold"
|
|
android:text="@string/profile_recent_actvity" />
|
|
|
|
<ListView
|
|
android:id="@+id/profile_details_activitylist"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="fill_parent"
|
|
android:background="@color/lightgray"
|
|
android:divider="@drawable/divider_dark"
|
|
android:dividerHeight="1px" />
|
|
|
|
</LinearLayout> |