5141f9f6da
This will not change in the layout, it's here just to better maintain the code.
32 lines
1 KiB
XML
32 lines
1 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="horizontal"
|
|
android:paddingBottom="5dp"
|
|
android:paddingTop="5dp">
|
|
|
|
<ImageView
|
|
android:id="@+id/folder_icon"
|
|
android:layout_width="37dip"
|
|
android:layout_height="fill_parent"
|
|
android:paddingLeft="8dp"
|
|
android:paddingRight="8dp"
|
|
android:paddingTop="2dp" />
|
|
|
|
<TextView
|
|
android:id="@+id/folder_label"
|
|
style="@style/ListText"
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1" />
|
|
|
|
<ImageView
|
|
android:id="@+id/folder_edit_icon"
|
|
android:layout_width="37dip"
|
|
android:layout_height="fill_parent"
|
|
android:paddingLeft="4dp"
|
|
android:paddingRight="8dp"
|
|
android:paddingTop="2dp"
|
|
android:src="@android:drawable/ic_input_get" />
|
|
</LinearLayout>
|