[network/kdeconnect-android/kdeconnect-android-work/close-button] src/main/res: Replace close icon
Albert Vaca Cintora <[email protected]>
| Newsgroups | gmane.comp.kde.cvs |
|---|---|
| Message-ID | <[email protected]> |
Git commit 985c9e662aceb29ddc9ef9d95c22a13dd950d07c by Albert Vaca Cintora. Committed on 02/08/2026 at 21:31. Pushed by albertvaka into branch 'kdeconnect-android-work/close-button'. Replace close icon A +23 -0 src/main/res/drawable/ic_close.xml M +1 -1 src/main/res/layout/activity_bigscreen.xml https://invent.kde.org/network/kdeconnect-android/-/commit/985c9e662aceb29ddc9ef9d95c22a13dd950d07c diff --git a/src/main/res/drawable/ic_close.xml b/src/main/res/drawable/ic_close.xml new file mode 100644 index 000000000..c4ebc970a --- /dev/null +++ b/src/main/res/drawable/ic_close.xml @@ -0,0 +1,23 @@ +<!-- + ~ SPDX-FileCopyrightText: 2026 Albert Vaca Cintora <[email protected]> + ~ + ~ SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL + --> +<vector xmlns:android="http://schemas.android.com/apk/res/android" + android:width="24dp" + android:height="24dp" + android:viewportWidth="24" + android:viewportHeight="24"> + + <path + android:strokeColor="#000000" + android:strokeWidth="2.5" + android:strokeLineCap="square" + android:pathData="M6,6 L18,18"/> + + <path + android:strokeColor="#000000" + android:strokeWidth="2.5" + android:strokeLineCap="square" + android:pathData="M18,6 L6,18"/> +</vector> diff --git a/src/main/res/layout/activity_bigscreen.xml b/src/main/res/layout/activity_bigscreen.xml index 00488e84e..1590d47c5 100644 --- a/src/main/res/layout/activity_bigscreen.xml +++ b/src/main/res/layout/activity_bigscreen.xml @@ -115,7 +115,7 @@ SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted android:id="@+id/close_button" style="@style/KdeConnectButton.IconButton" android:contentDescription="@string/bigscreen_close" - app:icon="@android:drawable/ic_menu_close_clear_cancel" + app:icon="@drawable/ic_close" app:iconSize="32dp" app:layout_column="2" app:layout_columnWeight="1"