lose embedded source jars from upstream branch
[debian/openrocket] / android / res / layout / tree_list_item_wrapper.xml
1 <?xml version="1.0" encoding="utf-8"?>
2 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
3     android:layout_width="fill_parent"
4     android:layout_height="fill_parent" >
5
6     <LinearLayout
7         android:id="@+id/treeview_list_item_image_layout"
8         android:layout_width="80dip"
9         android:layout_height="fill_parent"
10         android:gravity="right|center_vertical" >
11
12         <ImageView
13             android:id="@+id/treeview_list_item_image"
14             android:layout_width="wrap_content"
15             android:layout_height="wrap_content"
16             android:src="@drawable/collapsed" >
17         </ImageView>
18     </LinearLayout>
19
20     <FrameLayout
21         android:id="@+id/treeview_list_item_frame"
22         android:layout_width="fill_parent"
23         android:layout_height="fill_parent"
24         android:layout_weight="1" >
25     </FrameLayout>
26
27 </LinearLayout>