Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 959e4309 authored by tobias's avatar tobias
Browse files

- added undo icon

- fixed layout for 2.x
- improved widget list selection layout
parent a4ee6f1a
Loading
Loading
Loading
Loading
+436 B
Loading image diff...
+308 B
Loading image diff...
+575 B
Loading image diff...
+1.95 KiB
Loading image diff...
+24 −28
Original line number Diff line number Diff line
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/edit_name"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
@@ -12,16 +12,36 @@
        style="@style/dialog_text_title"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_alignParentTop="true"
        android:gravity="left|center_vertical"
        android:padding="8dp"
        android:text="@string/task_list_selection_title" />


    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="0px"
        android:layout_weight="1"
        android:orientation="vertical">

        <ListView
            android:id="@id/android:list"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:divider="@null"
            android:dividerHeight="0px"
            android:drawSelectorOnTop="false" />

        <TextView
            android:id="@id/android:empty"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:text="@string/task_list_selection_empty" />
    </LinearLayout>
    
     <LinearLayout
        android:id="@+id/buttonArea"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_alignParentBottom="true"
        android:gravity="right"
        android:orientation="horizontal" >

@@ -40,28 +60,4 @@
            android:text="@string/accept" />
    </LinearLayout>

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_above="@id/buttonArea"
        android:layout_below="@android:id/title"
        android:orientation="vertical"
        android:paddingTop="8dp" >

        <ListView
            android:id="@id/android:list"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:divider="@null"
            android:dividerHeight="0px"
            android:drawSelectorOnTop="false" />

        <TextView
            android:id="@id/android:empty"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:text="@string/task_list_selection_empty" />
</LinearLayout>
 No newline at end of file

</RelativeLayout>
 No newline at end of file
Loading