Variety of changes based on suggestions from ADT Lint. Includes removing extra drawa...
[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     android:baselineAligned="false" >
6
7     <LinearLayout
8         android:id="@+id/treeview_list_item_image_layout"
9         android:layout_width="80dip"
10         android:layout_height="fill_parent"
11         android:gravity="right|center_vertical" >
12
13         <ImageView
14             android:id="@+id/treeview_list_item_image"
15             android:layout_width="wrap_content"
16             android:layout_height="wrap_content"
17             android:src="@drawable/collapsed" >
18         </ImageView>
19     </LinearLayout>
20
21     <FrameLayout
22         android:id="@+id/treeview_list_item_frame"
23         android:layout_width="0dp"
24         android:layout_height="fill_parent"
25         android:layout_weight="1" >
26     </FrameLayout>
27
28 </LinearLayout>