Files
osj-forum/OSJ Forum/res/layout/activity_forum_twopane.xml
Ricky Barrette fc86aa6fa7 Performed a refactor and removed unneeded files
Renamed package to org.RickBarretet.osj.forum
refactored some layout names
removed unused layout files

Signed-off-by: Ricky Barrette <rickbarrette@gmail.com>
2012-09-14 12:18:13 -04:00

31 lines
1.1 KiB
XML

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginLeft="16dp"
android:layout_marginRight="16dp"
android:divider="?android:attr/dividerHorizontal"
android:orientation="horizontal"
android:showDividers="middle"
tools:context=".ForumListActivity" >
<FrameLayout
android:id="@+id/forum_list_container"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1" >
<fragment
android:id="@+id/forum_list"
android:name="org.RickBarrette.osj.forum.ForumListFragment"
android:layout_width="match_parent"
android:layout_height="match_parent" />
</FrameLayout>
<FrameLayout
android:id="@+id/forum_detail_container"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="3" />
</LinearLayout>