Added a long-press menu (info, delete, hide, rename). Rename not done. Others work.

This commit is contained in:
ottoptj 2024-05-07 07:38:34 +03:00
commit 71338fb9f1
10 changed files with 249 additions and 615 deletions

View file

@ -0,0 +1,15 @@
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<!-- Pressed state -->
<item android:state_pressed="true">
<shape android:shape="rectangle">
<solid android:color="#0FFFFFFF"/> <!-- Change color to indicate pressed state -->
</shape>
</item>
<!-- Normal state -->
<item>
<shape android:shape="rectangle">
<solid android:color="#00FFFFFF"/> <!-- Change color to indicate normal state -->
</shape>
</item>
</selector>