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

Commit 7f98f26e authored by android-build-team Robot's avatar android-build-team Robot
Browse files

Snap for 6538752 from f5603227 to sc-d1-release

Change-Id: Ic969794240e10c211e57651436bd14827305a45b
parents 00ca50e1 f5603227
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -51,8 +51,8 @@

        <activity
            android:name=".picker.PickActivity"
            android:theme="@style/DocumentsTheme"
            android:exported="true"
            android:theme="@style/LauncherTheme"
            android:visibleToInstantApps="true">
            <intent-filter android:priority="100">
                <action android:name="android.intent.action.OPEN_DOCUMENT" />
@@ -111,7 +111,7 @@
            android:name=".files.FilesActivity"
            android:documentLaunchMode="intoExisting"
            android:exported="true"
            android:theme="@style/DocumentsTheme">
            android:theme="@style/LauncherTheme">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
            </intent-filter>
+11 −0
Original line number Diff line number Diff line
<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android" >
  <item android:drawable="@android:color/white"/>

  <item
      android:drawable="@drawable/app_icon"
      android:height="150dp"
      android:width="150dp"
      android:gravity="center"/>

</layer-list>
+1 −0
Original line number Diff line number Diff line
@@ -50,6 +50,7 @@
            android:layout_marginTop="8dp"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:gravity="center_horizontal"
            android:textAppearance="@style/EmptyStateTitleText"/>
        <TextView
            android:id="@+id/message"
+3 −0
Original line number Diff line number Diff line
@@ -15,6 +15,9 @@
-->

<resources>
    <style name="LauncherTheme" parent="DocumentsTheme">
        <item name="android:windowBackground">@drawable/launcher_screen</item>
    </style>
    <!-- DocumentsTheme is allow customize by run time overlay -->
    <style name="DocumentsTheme" parent="@android:style/Theme.DeviceDefault.DocumentsUI">

+1 −0
Original line number Diff line number Diff line
@@ -88,6 +88,7 @@ public class FilesActivity extends BaseActivity implements AbstractActionHandler

    @Override
    public void onCreate(Bundle icicle) {
        setTheme(R.style.DocumentsTheme);

        MessageBuilder messages = new MessageBuilder(this);
        Features features = Features.create(this);
Loading