- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
我有几个 EditText View
,我想在其中设置左侧的图像,而 setCompoundDrawablesWithIntrinsicBounds
似乎不起作用。图形似乎没有改变。
有人知道为什么会这样吗?
这是我设置可绘制对象的方式:
mFirstname.setCompoundDrawablesWithIntrinsicBounds(R.drawable.user_icon, 0, 0, 0);
mLastname.setCompoundDrawablesWithIntrinsicBounds(R.drawable.user_icon, 0, 0, 0);
mEmail.setCompoundDrawablesWithIntrinsicBounds(R.drawable.mailicon, 0, 0, 0);
mPassword.setCompoundDrawablesWithIntrinsicBounds(R.drawable.lockicon, 0, 0, 0);
mDateOfBirth.setCompoundDrawablesWithIntrinsicBounds(R.drawable.calico, 0, 0, 0);
mCity.setCompoundDrawablesWithIntrinsicBounds(R.drawable.mailicon, 0, 0, 0);
mStreet.setCompoundDrawablesWithIntrinsicBounds(R.drawable.mailicon, 0, 0, 0);
mPostcode.setCompoundDrawablesWithIntrinsicBounds(R.drawable.mailicon, 0, 0, 0);
mPhoneNumber.setCompoundDrawablesWithIntrinsicBounds(R.drawable.mailicon, 0, 0, 0);
最佳答案
如果其他人遇到这个看似无法解释的问题,请尝试以下操作:
基本上这部分 View 似乎不会在 ICS 设备上重新膨胀。希望这可以解决某些人的问题!
关于android - setCompoundDrawablesWithIntrinsicBounds(int,int,int,int)不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20423445/
我正在尝试使用字符串设置图像资源 我在设置 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
我是一名优秀的程序员,十分优秀!