Skip to content

Instantly share code, notes, and snippets.

@outsmartin
Created June 22, 2012 19:07
Show Gist options
  • Save outsmartin/2974555 to your computer and use it in GitHub Desktop.
Save outsmartin/2974555 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:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal" >
<fragment
android:id="@+id/searchparamsFragment"
android:name="android.support.v4.app.ListFragment"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"
class="de.htw.lovoo.SearchParamsFragment" >
<!-- Preview: layout=@layout/flirtsearch_params -->
</fragment>
<fragment
android:id="@+id/searchresultsFragment"
android:name="android.support.v4.app.ListFragment"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1.49"
class="de.htw.lovoo.SearchResultsFragment" >
<!-- Preview: layout=@layout/flirtsearch_results -->
</fragment>
<fragment
android:id="@+id/detailFragment"
android:name="de.htw.lovoo.ResultDetailFragment"
android:layout_width="0px"
android:layout_height="match_parent"
android:layout_weight="2.26"
class="de.htw.lovoo.ResultDetailFragment" >
<!-- Preview: layout=@layout/detail_layout -->
</fragment>
</LinearLayout>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment