【问题标题】:Touch feedback on pictures in Android xmlAndroid xml中图片的触摸反馈
【发布时间】:2013-10-29 23:46:01
【问题描述】:

任何人都知道一种让 ImageView(图像/图片)与 Xml 叠加触摸反馈的方法。

我试图通过创建一个可绘制的背景来做到这一点,但没有成功。我已经尝试过按钮反馈,但这对我来说是不成功的。我知道这是可能的。

谢谢

【问题讨论】:

    标签: android xml user-interface android-imageview touch-feedback


    【解决方案1】:

    为什么不使用ImageButton

    您可以使用这样的选择器在按下时更改背景

      <?xml version="1.0" encoding="utf-8"?>
      <selector xmlns:android="http://schemas.android.com/apk/res/android">
          <item android:state_pressed="true"
           android:drawable="@drawable/button_pressed" /> <!-- pressed -->
          <item android:drawable="@drawable/button_normal" /> <!-- default -->
      </selector>
    

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 1970-01-01
      • 2014-09-11
      • 2023-03-09
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      相关资源
      最近更新 更多