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

Commit eaf9b255 authored by Demon000's avatar Demon000 Committed by Luca Stefani
Browse files

SystemUI: implement better partial screenshot

Change-Id: Ib818b24bb788a19ac210378611402c96fa55bd37
parent f15e2499
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
    android:shape="oval">
    <solid android:color="#a0000000" />
    <size android:width="48dp" android:height="48dp" />
</shape>
+12 −0
Original line number Diff line number Diff line
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
    <item
        android:drawable="@drawable/ic_screenshot_selector_bg"
        android:height="48dp"
        android:width="48dp" />
    <item
        android:drawable="@drawable/ic_screenshot_selector_cancel_fg"
        android:height="24dp"
        android:width="24dp"
        android:left="12dp"
        android:top="12dp" />
</layer-list>
+7 −0
Original line number Diff line number Diff line
<vector xmlns:android="http://schemas.android.com/apk/res/android"
    android:height="24dp"
    android:width="24dp"
    android:viewportWidth="24"
    android:viewportHeight="24">
    <path android:fillColor="#fff" android:pathData="M19,6.41L17.59,5L12,10.59L6.41,5L5,6.41L10.59,12L5,17.59L6.41,19L12,13.41L17.59,19L19,17.59L13.41,12L19,6.41Z" />
</vector>
+12 −0
Original line number Diff line number Diff line
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
    <item
        android:drawable="@drawable/ic_screenshot_selector_bg"
        android:height="48dp"
        android:width="48dp" />
    <item
        android:drawable="@drawable/ic_screenshot_selector_capture_fg"
        android:height="24dp"
        android:width="24dp"
        android:left="12dp"
        android:top="12dp" />
</layer-list>
+7 −0
Original line number Diff line number Diff line
<vector xmlns:android="http://schemas.android.com/apk/res/android"
    android:height="24dp"
    android:width="24dp"
    android:viewportWidth="24"
    android:viewportHeight="24">
    <path android:fillColor="#fff" android:pathData="M21,7L9,19L3.5,13.5L4.91,12.09L9,16.17L19.59,5.59L21,7Z" />
</vector>
Loading