- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
通过xml设置drawable有什么区别
android:drawableRight="@drawable/arrow_right_normal"
并通过如下代码设置可绘制对象
bt.setCompoundDrawablesWithIntrinsicBounds(0, 0, 0, R.drawable.arrow_right_normal);
因为在第一种情况下,一切都按预期进行(按钮文本居中水平,图标位于右侧中间)。在第二种情况下,图标位于按钮的底部/中间,文本位于左上角。
最佳答案
right
是第三个参数。最后一个是底部
bt.setCompoundDrawablesWithIntrinsicBounds(0, 0, R.drawable.arrow_right_normal,0);
Here文档
关于android - setCompoundDrawablesWithIntrinsicBounds 与 android :drawableRight,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23290357/
我正在尝试使用字符串设置图像资源 我在设置 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
我是一名优秀的程序员,十分优秀!