安卓 KOTLIN 用XML寫一個當光標滑過按鈕的時候,按鈕會顯示水波紋效果
时间: 2024-05-12 14:15:23 浏览: 50
在 XML 中为按钮添加 "android:background" 属性,并将其设置为 "@drawable/ripple_effect",其中 ripple_effect 是您自己创建的水波纹效果文件。以下是一个示例:
1. 创建一个名为 "ripple_effect.xml" 的新文件,并将其保存在 "res/drawable" 文件夹中。
2. 在 ripple_effect.xml 文件中,添加以下代码:
```
<ripple xmlns:android="http://schemas.android.com/apk/res/android"
android:color="?android:attr/colorControlHighlight">
<item>
<shape android:shape="rectangle">
<solid android:color="@android:color/transparent" />
<stroke android:width="1dp" android:color="#FF000000" />
</shape>
</item>
</ripple>
```
3. 在 XML 中,为按钮添加以下行:
```
<Button
android:id="@+id/my_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="My Button"
android:background="@drawable/ripple_effect" />
```
现在,当您将光标悬停在按钮上时,将会看到水波纹效果。
阅读全文