mirror of
https://github.com/viq/NewsBlur.git
synced 2025-11-01 09:09:16 +00:00
25 lines
No EOL
850 B
XML
25 lines
No EOL
850 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:background="@color/item_background"
|
|
android:orientation="vertical" >
|
|
|
|
<FrameLayout
|
|
android:id="@+id/profile_details"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content" />
|
|
|
|
<FrameLayout
|
|
android:id="@+id/profile_activities"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="fill_parent"
|
|
android:layout_below="@id/profile_details" />
|
|
|
|
<View
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="8dip"
|
|
android:layout_alignParentTop="true"
|
|
android:background="@drawable/orangeline_shadow" />
|
|
|
|
</RelativeLayout> |