Drawable icon = context.getResources().getDrawable(iconResourceID);button.setCompoundDrawablesWithIntrinsicBounds(icon,null,null);
现在,我想在右上角有另一个图像(图标),请看下图:
我尝试使用以下代码添加两个图像:
Drawable icon = context.getResources().getDrawable(iconResourceID);Drawable icon2 = context.getResources().getDrawable(iconResourceID2);button.setCompoundDrawablesWithIntrinsicBounds(icon,icon2,null);
而且,我得到以下结果:
任何人都可以告诉我,我怎样才能将它与右上角对齐?
解决方法 您的代码看起来像这样,其中btn_background是您目前拥有的背景button button = new button(this); Drawable icon = context.getResources().getDrawable(iconResourceID); button.setCompoundDrawablesWithIntrinsicBounds(icon,null); button.setText("Test"); if (hasNewUpdates()) { button.setBackgroundResource(R.drawable.btn_background_with_icon); } else { button.setBackgroundResource(R.drawable.btn_background); }
这就是btn_background_with_icon的样子
<?xml version="1.0" enCoding="utf-8"?><@R_40_3419@ xmlns:androID="http://schemas.androID.com/apk/res/androID"> <item androID:drawable="@drawable/btn_background"/> <item androID:gravity="right" androID:bottom="72dp" androID:drawable="@drawable/ico_info"/></@R_40_3419@>总结
以上是内存溢出为你收集整理的Android:带有两个图像的按钮|对准全部内容,希望文章能够帮你解决Android:带有两个图像的按钮|对准所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)