您好,登錄后才能下訂單哦!
要為TextView添加觸摸反饋效果,可以使用以下方法:
在res/drawable文件夾下創建一個selector.xml文件,內容如下:
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_pressed="true" android:drawable="@color/pressed_color" />
<item android:drawable="@color/default_color" />
</selector>
然后在TextView的background屬性中引用這個selector文件:
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Button"
android:background="@drawable/selector"
/>
在res/drawable文件夾下創建一個ripple.xml文件,內容如下:
<ripple xmlns:android="http://schemas.android.com/apk/res/android"
android:color="@color/ripple_color">
<item android:drawable="@color/default_color" />
</ripple>
然后在TextView的background屬性中引用這個ripple文件:
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Button"
android:background="@drawable/ripple"
/>
通過以上兩種方法,可以為TextView添加觸摸反饋效果,使用戶在點擊TextView時能夠看到相應的反饋效果。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。