- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我只是想知道我们能否在 textview 的 setCompoundDrawablesWithIntrinsicBounds(left, top, right, bottom)
上获得两个不同的 onclick 事件。首先 onclick onclick onclick on textview 和其他 onclick on drawable 或者我可以 onclick on just drawable 而不是 textview。??任何帮助将不胜感激。谢谢。
最佳答案
我是通过自己监听点击事件来实现的。如下所示:
lTextView.setOnTouchListener(new OnTouchListener() {
@Override
public boolean onTouch(View v, MotionEvent event) {
if(event.getAction() == MotionEvent.ACTION_UP && event.getX() < dpTopx(MainActivity.this, 19) )
{
Log.v("Click", "Clicked on back button");
}
return true;
}
});
其中 dpToPx 只是一个将 dp 转换为像素的函数。所以现在左侧的 19-dp 区域(包含左侧可绘制对象)是可点击的。
关于android - 使用 setCompoundDrawablesWithIntrinsicBounds(left, top, right, bottom) 在 textView 的 drawable 上获取 onclick 事件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20902796/
我正在尝试使用字符串设置图像资源 我在设置 setCompoundDrawablesWithIntrinsicBounds 时遇到问题,它一直告诉我 cannot resolve method set
我有一个电子邮件字段作为 EditText。我试图在验证为真时在文本字段的末尾添加一个绿色勾号图标,并在验证为假时添加 setError。 这是我现在正在使用的一段代码: email.setOnFoc
我需要在选项卡布局中的选项卡中将图像设置在文本上方。所以我使用 setCompoundDrawablesWithIntrinsicBounds 在我的 TextView 中设置图像,但我不知道如何为我
我有一个选项卡布局,我在其中设置文本和矢量图像,如下所示: TextView tab2 = (TextView) LayoutInflater.from(this).inflate(R.lay
通过xml设置drawable有什么区别 android:drawableRight="@drawable/arrow_right_normal" 并通过如下代码设置可绘制对象 bt.setCompo
我正在尝试在按钮上设置左图标: setCompoundDrawablesWithIntrinsicBounds(R.drawable.foo, 0, 0, 0); 但是图标被放置在我的按钮的左边缘和文
我有一个自定义小部件,它使用 setCompoundDrawablesWithIntrinsicBounds() 方法将一个清除按钮设置为正确的可绘制对象。现在我需要向小部件添加错误,我尝试使用默认功
我有几个 EditText View ,我想在其中设置左侧的图像,而 setCompoundDrawablesWithIntrinsicBounds 似乎不起作用。图形似乎没有改变。 有人知道为什么会
我只是想知道我们能否在 textview 的 setCompoundDrawablesWithIntrinsicBounds(left, top, right, bottom) 上获得两个不同的 on
我是一名优秀的程序员,十分优秀!