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

Commit 13e508a6 authored by android-build-team Robot's avatar android-build-team Robot
Browse files

Snap for 7277594 from 85f4531d to mainline-documentsui-release

Change-Id: I89d9c8db9ff8a17fbe3a140edc938a04dff9e38f
parents a7484d8c 85f4531d
Loading
Loading
Loading
Loading
+5 −0
Original line number Diff line number Diff line
@@ -17,6 +17,11 @@
   public static androidx.core.view.accessibility.AccessibilityNodeInfoCompat obtain();
}

# This method is marked @hide in DocumentsProvider but we need to implement it for managed mode.
-keep public class com.android.documentsui.archives.ArchivesProvider {
   public android.database.Cursor queryChildDocumentsForManage(java.lang.String, java.lang.String[], java.lang.String);
}

# To prevent class not found exception in org.brotli.dec.Dictionary
-keep final class org.brotli.dec.DictionaryData
+1 −1
Original line number Diff line number Diff line
@@ -16,7 +16,7 @@
  -->

<selector xmlns:android="http://schemas.android.com/apk/res/android">
    <item android:state_selected="true" android:color="?android:colorPrimary"/>
    <item android:state_selected="true" android:color="@color/chip_selected_text"/>
    <item android:state_enabled="true" android:color="?android:textColorSecondary"/>
    <item android:state_enabled="false" android:color="?android:textColorSecondary" android:alpha="0.3"/>
</selector>
 No newline at end of file
+32 −24
Original line number Diff line number Diff line
@@ -16,6 +16,7 @@
-->

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:background="?android:attr/selectableItemBackground"
@@ -40,6 +41,11 @@
            android:paddingEnd="16dp"
            android:paddingStart="@dimen/list_item_padding" >

            <com.google.android.material.card.MaterialCardView
                app:cardElevation="0dp"
                android:layout_width="match_parent"
                android:layout_height="match_parent">

                <ImageView
                    android:id="@+id/icon_mime"
                    android:layout_width="wrap_content"
@@ -66,6 +72,8 @@
                    android:scaleType="fitCenter"
                    android:src="@drawable/ic_check_circle" />

            </com.google.android.material.card.MaterialCardView>

        </FrameLayout>

        <!-- This is the one special case where we want baseline alignment! -->
+0 −1
Original line number Diff line number Diff line
@@ -49,7 +49,6 @@
            android:clipToPadding="false"
            android:scrollbars="none"
            android:drawSelectorOnTop="true"
            android:overScrollMode="never"
            app:fastScrollEnabled="false"/>

    </com.android.documentsui.dirlist.DocumentsSwipeRefreshLayout>
+0 −1
Original line number Diff line number Diff line
@@ -68,7 +68,6 @@
        android:orientation="vertical"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:overScrollMode="never"
        app:behavior_overlapTop="10dp"
        app:layout_behavior="@string/appbar_scrolling_view_behavior">

Loading