I can now display posts

Signed-off-by: Ricky Barrette <rickbarrette@gmail.com>
This commit is contained in:
2012-09-14 10:34:53 -04:00
parent 12f4f72729
commit e6a7798031
12 changed files with 414 additions and 111 deletions

View File

@@ -1,23 +1,31 @@
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:orientation="horizontal"
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">
tools:context=".ForumListActivity" >
<fragment android:name="com.RickBarrette.osj.forum.ForumListFragment"
android:id="@+id/forum_list"
<FrameLayout
android:id="@+id/forum_list_container"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1" />
android:layout_weight="1" >
<FrameLayout android:id="@+id/forum_detail_container"
<fragment
android:id="@+id/forum_list"
android:name="com.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>
</LinearLayout>

View File

@@ -19,7 +19,9 @@
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true" />
android:layout_alignParentTop="true"
android:src="@drawable/ic_launcher"
/>
<TextView
android:id="@+id/textView3"