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

Commit 9e43bd2d authored by Luciano Pacheco's avatar Luciano Pacheco
Browse files

DocumentsUI: Remove unused resources and activity

The demo activity was deleted in ag/4396667

Test: Build and deploy to DUT
Bug: 110482929
Flag: EXEMPT resource only update
Change-Id: Ib8dff0e6401690d0a2bdc4f9741d8a4223a42348
parent 78da2972
Loading
Loading
Loading
Loading
+0 −10
Original line number Diff line number Diff line
@@ -210,15 +210,5 @@
            android:process=":com.android.documentsui.services">
        </service>

        <activity
            android:name=".selection.demo.SelectionDemoActivity"
            android:label="Selection Demo"
            android:exported="true"
            android:theme="@style/DocumentsTheme">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
            </intent-filter>
        </activity>

    </application>
</manifest>
+0 −27
Original line number Diff line number Diff line
<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright (C) 2017 The Android Open Source Project

     Licensed under the Apache License, Version 2.0 (the "License");
     you may not use this file except in compliance with the License.
     You may obtain a copy of the License at

          http://www.apache.org/licenses/LICENSE-2.0

     Unless required by applicable law or agreed to in writing, software
     distributed under the License is distributed on an "AS IS" BASIS,
     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     See the License for the specific language governing permissions and
     limitations under the License.
-->

<selector xmlns:android="http://schemas.android.com/apk/res/android">
    <item
        android:state_activated="true"
        android:color="?android:attr/colorForeground"
        />
    <item
        android:state_activated="false"
        android:color="?android:attr/colorForeground"
        android:alpha=".3"
        />
</selector>
+0 −22
Original line number Diff line number Diff line
<?xml version="1.0" encoding="utf-8"?>
<!--
  ~ Copyright (C) 2015 The Android Open Source Project
  ~
  ~ Licensed under the Apache License, Version 2.0 (the "License");
  ~ you may not use this file except in compliance with the License.
  ~ You may obtain a copy of the License at
  ~
  ~      http://www.apache.org/licenses/LICENSE-2.0
  ~
  ~ Unless required by applicable law or agreed to in writing, software
  ~ distributed under the License is distributed on an "AS IS" BASIS,
  ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  ~ See the License for the specific language governing permissions and
  ~ limitations under the License
  -->

<shape xmlns:android="http://schemas.android.com/apk/res/android"
        android:shape="rectangle">
    <solid android:color="#339999ff" />
    <stroke android:width="1dp" android:color="#44000000" />
</shape>
+0 −21
Original line number Diff line number Diff line
<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright (C) 2017 The Android Open Source Project

     Licensed under the Apache License, Version 2.0 (the "License");
     you may not use this file except in compliance with the License.
     You may obtain a copy of the License at

          http://www.apache.org/licenses/LICENSE-2.0

     Unless required by applicable law or agreed to in writing, software
     distributed under the License is distributed on an "AS IS" BASIS,
     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     See the License for the specific language governing permissions and
     limitations under the License.
-->

<selector xmlns:android="http://schemas.android.com/apk/res/android">
    <item android:state_activated="true">
        <color android:color="?android:attr/colorControlHighlight"></color>
    </item>
</selector>
+0 −53
Original line number Diff line number Diff line
<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright (C) 2017 The Android Open Source Project

     Licensed under the Apache License, Version 2.0 (the "License");
     you may not use this file except in compliance with the License.
     You may obtain a copy of the License at

          http://www.apache.org/licenses/LICENSE-2.0

     Unless required by applicable law or agreed to in writing, software
     distributed under the License is distributed on an "AS IS" BASIS,
     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     See the License for the specific language governing permissions and
     limitations under the License.
-->

<LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:paddingStart="10dp"
    android:paddingEnd="10dp"
    android:paddingTop="5dp"
    android:paddingBottom="5dp"
    android:layout_height="50dp">
  <LinearLayout
      android:id="@+id/container"
      xmlns:android="http://schemas.android.com/apk/res/android"
      android:layout_height="match_parent"
      android:layout_width="match_parent"
      android:background="@drawable/selection_demo_item_background">
      <TextView
          android:id="@+id/selector"
          android:textSize="20sp"
          android:textStyle="bold"
          android:gravity="center"
          android:layout_height="match_parent"
          android:layout_width="40dp"
          android:textColor="@color/selection_demo_item_selector"
          android:pointerIcon="hand"
          android:text="✕">
      </TextView>
      <TextView
          android:id="@+id/label"
          android:textSize="20sp"
          android:textStyle="bold"
          android:gravity="center_vertical"
          android:paddingStart="10dp"
          android:paddingEnd="10dp"
          android:layout_height="match_parent"
          android:layout_width="match_parent">
      </TextView>
  </LinearLayout>
</LinearLayout>
Loading