Skip to content

Instantly share code, notes, and snippets.

@realdm
Created February 13, 2015 11:53
Show Gist options
  • Save realdm/e36389db5063f9bb9a2b to your computer and use it in GitHub Desktop.
Save realdm/e36389db5063f9bb9a2b to your computer and use it in GitHub Desktop.
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="match_parent">
<fragment android:name="FragmentA"
android:id="@+id/list"
android:layout_weight="1"
android:layout_width="0dp"
android:layout_height="match_parent" />
<fragment android:name="FragmentB"
android:id="@+id/viewer"
android:layout_weight="2"
android:layout_width="0dp"
android:layout_height="match_parent" />
</LinearLayout>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment