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

Commit bc2971d2 authored by Jeff Sharkey's avatar Jeff Sharkey
Browse files

Sliding drawer for roots, move sorting, search.

Move backend root exploration into sliding drawer, and adjust action
bar when moving between modes.  Moves sorting into action bar spinner
instead of separate dialog.  Also add initial search support.

Change-Id: I70189911ba56ae6bd93d5c503a8600acd6d6c0c5
parent 20d96d8a
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -5,6 +5,8 @@ LOCAL_MODULE_TAGS := optional

LOCAL_SRC_FILES := $(call all-subdir-java-files)

LOCAL_STATIC_JAVA_LIBRARIES := android-support-v4

LOCAL_PACKAGE_NAME := DocumentsUI
LOCAL_CERTIFICATE := platform

+171 B
Loading image diff...
+2.78 KiB
Loading image diff...
+1.61 KiB
Loading image diff...
+26 −12
Original line number Diff line number Diff line
@@ -14,7 +14,12 @@
     limitations under the License.
-->

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
<android.support.v4.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/drawer_layout"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:orientation="vertical">
@@ -31,3 +36,12 @@
            android:layout_height="wrap_content" />

    </LinearLayout>

    <ListView
        android:id="@+id/roots_list"
        android:layout_width="300dp"
        android:layout_height="match_parent"
        android:layout_gravity="start"
        android:background="#fff" />

</android.support.v4.widget.DrawerLayout>
Loading