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

Commit f4b6daf0 authored by Jeff Sharkey's avatar Jeff Sharkey Committed by Android (Google) Code Review
Browse files

Merge "Sliding drawer for roots, move sorting, search."

parents fd5d153a bc2971d2
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