I'm trying to reproduce Honeycomb GMail UI with fragments and can't. Here's what I want
Initial state:
+--------+---------------+
| | |
|Accounts| Folders |
| | |
+--------+---------------+
after folder is selected:
+--------+---------------+
| | |
|Folders | Items |
| | |
+--------+---------------+
where Accounts, Folders and Items are fragments. (Obviously back button should go to initial state)
I tried the following layout:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal"
android:id="@+id/root">
<FrameLayout
android:id="@+id/left_pane" android:layout_weight="1"
android:layout_width="0px" android:layout_height="match_parent" />
<FrameLayout
android:id="@+id/right_pane" android:layout_weight="1.6"
android:layout_width="0px" android:layout_height="match_parent" />
</LinearLayout>
Unfortunately this doesn't work because I can't move my Folders fragment from right pane to the left pane (fragment can be added only once). I can create new Folders instead, but that is quite resource wasteful, needs careful state management (especially when back button will be pressed) and doesn't look the way I want it to look.
I tried using 3 FrameLayouts (left, middle, right with weights 1, 1.6, 2.56) but I can't make the FrameLayout to collapse when fragment is not shown. Any help is really appreciated
android:layout_weight="1.6"has no effect when added to a<fragment...in XML? I didn't know that. – Jon Willis Apr 28 '11 at 14:54