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

Commit 0fbb2290 authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Android (Google) Code Review
Browse files

Merge "Move sort headers out of directory layout." into nyc-andromeda-dev

parents 20015cf8 9de0da60
Loading
Loading
Loading
Loading
+2 −2
Original line number Original line Diff line number Diff line
@@ -20,7 +20,7 @@
        android:top="-1dp"
        android:top="-1dp"
        android:left="-1dp"
        android:left="-1dp"
        android:right="-1dp"
        android:right="-1dp"
        android:bottom="1dp">
        android:bottom="0dp">
        <shape android:shape="rectangle">
        <shape android:shape="rectangle">
            <stroke
            <stroke
                android:width="1dp"
                android:width="1dp"
+1 −0
Original line number Original line Diff line number Diff line
@@ -23,6 +23,7 @@
    android:layout_height="@dimen/doc_header_height"
    android:layout_height="@dimen/doc_header_height"
    android:background="@drawable/sort_widget_background"
    android:background="@drawable/sort_widget_background"
    android:visibility="gone">
    android:visibility="gone">

    <!-- Placeholder for focus indicator -->
    <!-- Placeholder for focus indicator -->
    <View
    <View
        android:layout_width="4dp"
        android:layout_width="4dp"
+12 −5
Original line number Original line Diff line number Diff line
@@ -18,12 +18,19 @@
    android:layout_height="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical">
    android:orientation="vertical">


    <FrameLayout
    <!-- dropdown sort widget shows when column headers doesn't. -->
        android:id="@+id/container_message_bar"
    <include layout="@layout/dropdown_sort_widget" />

    <!-- column headers are empty on small screens, in portrait or in grid mode. -->
    <include layout="@layout/column_headers"/>

    <ProgressBar
        android:id="@+id/progressbar"
        android:layout_width="match_parent"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_height="@dimen/progress_bar_height"
        android:elevation="8dp"
        android:indeterminate="true"
        android:background="@color/material_grey_50"/>
        style="@style/TrimmedHorizontalProgressBar"
        android:visibility="gone"/>


    <FrameLayout
    <FrameLayout
        android:id="@+id/container_directory"
        android:id="@+id/container_directory"
+3 −16
Original line number Original line Diff line number Diff line
@@ -23,19 +23,11 @@
    android:elevation="4dp"
    android:elevation="4dp"
    android:orientation="vertical">
    android:orientation="vertical">


    <ProgressBar
        android:id="@+id/progressbar"
        android:layout_width="match_parent"
        android:layout_height="@dimen/progress_bar_height"
        android:indeterminate="true"
        style="@style/TrimmedHorizontalProgressBar"
        android:visibility="gone"/>

    <FrameLayout
    <FrameLayout
        android:id="@+id/container_message_bar"
        android:id="@+id/container_message_bar"
        android:layout_width="match_parent"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_height="wrap_content"
        android:elevation="8dp"
        android:elevation="1dp"
        android:background="@color/material_grey_50"
        android:background="@color/material_grey_50"
        android:visibility="gone" />
        android:visibility="gone" />


@@ -47,6 +39,7 @@
        <FrameLayout
        <FrameLayout
            android:layout_width="match_parent"
            android:layout_width="match_parent"
            android:layout_height="match_parent">
            android:layout_height="match_parent">

            <!-- The empty container view -->
            <!-- The empty container view -->
            <FrameLayout
            <FrameLayout
                android:id="@android:id/empty"
                android:id="@android:id/empty"
@@ -95,12 +88,6 @@
                android:layout_height="match_parent"
                android:layout_height="match_parent"
                android:orientation="vertical">
                android:orientation="vertical">


                <!-- dropdown sort widget shows when column headers doesn't. -->
                <include layout="@layout/dropdown_sort_widget" />

                <!-- column headers are empty on small screens, in portrait or in grid mode. -->
                <include layout="@layout/column_headers"/>

                <android.support.v7.widget.RecyclerView
                <android.support.v7.widget.RecyclerView
                    android:id="@+id/dir_list"
                    android:id="@+id/dir_list"
                    android:scrollbars="vertical"
                    android:scrollbars="vertical"
+1 −3
Original line number Original line Diff line number Diff line
@@ -46,8 +46,6 @@
        android:layout_width="wrap_content"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_height="wrap_content"
        android:src="@drawable/ic_breadcrumb_arrow"
        android:src="@drawable/ic_breadcrumb_arrow"
        android:layout_marginTop="2dp"
        android:layout_marginTop="2dp" />
        android:layout_marginRight="3dp"
        android:layout_marginLeft="3dp" />


</LinearLayout>
</LinearLayout>
 No newline at end of file
Loading