Renamed package to org.RickBarretet.osj.forum refactored some layout names removed unused layout files Signed-off-by: Ricky Barrette <rickbarrette@gmail.com>
31 lines
1.1 KiB
XML
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> |