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

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

Merge "XML metadata for storage backend; custom icons."

parents 9c059d1e 7e258b31
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -387,6 +387,7 @@ package android {
    field public static final int cropToPadding = 16843043; // 0x1010123
    field public static final int cursorVisible = 16843090; // 0x1010152
    field public static final int customNavigationLayout = 16843474; // 0x10102d2
    field public static final int customRoots = 16843751; // 0x10103e7
    field public static final int customTokens = 16843579; // 0x101033b
    field public static final int cycles = 16843220; // 0x10101d4
    field public static final int dashGap = 16843175; // 0x10101a7
@@ -7624,7 +7625,7 @@ package android.content.res {
    method public void recycle();
  }
  public abstract interface XmlResourceParser implements android.util.AttributeSet org.xmlpull.v1.XmlPullParser {
  public abstract interface XmlResourceParser implements android.util.AttributeSet java.lang.AutoCloseable org.xmlpull.v1.XmlPullParser {
    method public abstract void close();
  }
+1 −1
Original line number Diff line number Diff line
@@ -26,7 +26,7 @@ import android.util.AttributeSet;
 * an additional close() method on this interface for the client to indicate
 * when it is done reading the resource.
 */
public interface XmlResourceParser extends XmlPullParser, AttributeSet {
public interface XmlResourceParser extends XmlPullParser, AttributeSet, AutoCloseable {
    /**
     * Close this interface to the resource.  Calls on the interface are no
     * longer value after this call.
+5 −0
Original line number Diff line number Diff line
@@ -6007,4 +6007,9 @@
        <attr name="digit" format="integer" />
        <attr name="textView" format="reference" />
    </declare-styleable>

    <declare-styleable name="DocumentsProviderInfo">
        <attr name="customRoots" format="boolean" />
    </declare-styleable>

</resources>
+1 −0
Original line number Diff line number Diff line
@@ -2070,4 +2070,5 @@
  <public type="attr" name="vendor" />
  <public type="attr" name="category" />
  <public type="attr" name="isAsciiCapable" />
  <public type="attr" name="customRoots" />
</resources>
+4 −2
Original line number Diff line number Diff line
@@ -34,7 +34,9 @@
    <string name="sort_name">By name</string>
    <string name="sort_date">By date modified</string>

    <string name="drawer_open">Open navigation drawer</string>
    <string name="drawer_close">Close navigation drawer</string>
    <string name="drawer_open">Show roots</string>
    <string name="drawer_close">Hide roots</string>

    <string name="save_error">Failed to save document</string>

</resources>
Loading