Initial Project Creation
The goal of this project is to create an intuitive forum browsing application for the Ocean State Jeepsters (http://www.oceanstatejeepsters.com/forum/) Signed-off-by: Ricky Barrette <rickbarrette@gmail.com>
This commit is contained in:
23
OSJ Forum/res/layout/activity_topic_twopane.xml
Normal file
23
OSJ Forum/res/layout/activity_topic_twopane.xml
Normal file
@@ -0,0 +1,23 @@
|
||||
<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:showDividers="middle"
|
||||
tools:context=".TopicListActivity">
|
||||
|
||||
<fragment android:name="com.RickBarrette.osj.forum.TopicListFragment"
|
||||
android:id="@+id/topic_list"
|
||||
android:layout_width="0dp"
|
||||
android:layout_height="match_parent"
|
||||
android:layout_weight="1" />
|
||||
|
||||
<FrameLayout android:id="@+id/topic_detail_container"
|
||||
android:layout_width="0dp"
|
||||
android:layout_height="match_parent"
|
||||
android:layout_weight="3" />
|
||||
|
||||
</LinearLayout>
|
||||
Reference in New Issue
Block a user