- 修复Hook类中canRequestPackageInstalls()返回false导致的安装失败问题 - 优化点击效果颜色,从刺眼的亮黄色改为柔和的半透明白色 - 调整选中状态背景色,使用更柔和的半透明黄色 - 清理项目中的临时文件和重复文件 - 更新版本号到3.0.8
15 lines
553 B
XML
15 lines
553 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<ripple xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:color="?attr/colorControlHighlight">
|
|
<item android:id="@android:id/background">
|
|
<shape android:shape="rectangle">
|
|
<solid android:color="@color/yellow_50" />
|
|
<corners android:radius="8dp" />
|
|
<padding
|
|
android:bottom="18dp"
|
|
android:left="16dp"
|
|
android:right="16dp"
|
|
android:top="18dp" />
|
|
</shape>
|
|
</item>
|
|
</ripple> |