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

Commit 3b19b5ec authored by Michael Jurka's avatar Michael Jurka Committed by Android (Google) Code Review
Browse files

Merge "Fix the pressed state for thumbnails in Recents"

parents 4c64b66e faa790c4
Loading
Loading
Loading
Loading
−207 B
Loading image diff...
+1 −2
Original line number Diff line number Diff line
@@ -14,7 +14,6 @@
     limitations under the License.
-->
<selector xmlns:android="http://schemas.android.com/apk/res/android">
    <item android:drawable="@drawable/recents_thumbnail_bg_press" android:state_pressed="true" />
    <item android:drawable="@drawable/recents_thumbnail_bg" android:state_activated="true" />
    <item android:drawable="@drawable/recents_thumbnail_bg_dragging" android:state_activated="true" />
    <item android:drawable="@*android:color/transparent"/>
</selector>
+1 −2
Original line number Diff line number Diff line
@@ -18,7 +18,6 @@
*/
-->

<!--    android:background="@drawable/status_bar_closed_default_background" -->
<FrameLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_height="match_parent"
@@ -37,7 +36,7 @@
            android:layout_alignParentTop="true"
            android:layout_marginLeft="@dimen/status_bar_recents_thumbnail_left_margin"
            android:scaleType="center"
            android:background="@drawable/recents_thumbnail_overlay">
            android:background="@drawable/recents_thumbnail_bg">
            <ImageView android:id="@+id/app_thumbnail_image"
                android:layout_width="match_parent"
                android:layout_height="match_parent"
Loading