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

Commit 932eb831 authored by Andrew Sapperstein's avatar Andrew Sapperstein
Browse files

Delete all* references to launcher clings.

Launcher clings are dead. Delete all the code and resources associated with
them.

* Did not delete the actual code the marks the cling as dismissed since it's
used in db upgrade and backup/restore paths. Figured we probably want to keep
that.

Change-Id: I28841b4a430187b62b239afeb64bee81a798e259
Fixes: 29461092
parent 8b9cb08b
Loading
Loading
Loading
Loading

res/drawable-hdpi/cling_bg.9.png

deleted100644 → 0
−1023 B
Loading image diff...

res/drawable-mdpi/cling_bg.9.png

deleted100644 → 0
−750 B
Loading image diff...

res/drawable-xhdpi/cling_bg.9.png

deleted100644 → 0
−1.41 KiB
Loading image diff...
−2.4 KiB
Loading image diff...
+0 −28
Original line number Diff line number Diff line
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:launcher="http://schemas.android.com/apk/res-auto"
    android:id="@+id/longpress_cling"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    launcher:layout_ignoreInsets="true"
    android:background="@color/cling_scrim_background"
    android:orientation="vertical" >

    <Space
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:layout_weight="1" />

    <FrameLayout
        android:id="@+id/cling_content"
        android:layout_width="360dp"
        android:layout_height="wrap_content"
        android:layout_gravity="center_horizontal"
        android:background="@drawable/cling_bg" />

    <Space
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:layout_weight="2" />

</LinearLayout>
 No newline at end of file
Loading