Android:带有两个图像的按钮|对准

Android:带有两个图像的按钮|对准,第1张

概述我已经以编程方式创建了此按钮,我可以使用下面的代码设置图标 Drawable icon = context.getResources().getDrawable(iconResourceId);button.setCompoundDrawablesWithIntrinsicBounds(icon, null, null, null); 现在,我想在右上角有另一个图像(图标),请看下图: 我尝试使 我已经以编程方式创建了此按钮,我可以使用下面的代码设置图标

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:带有两个图像的按钮|对准所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1123750.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-30
下一篇 2022-05-30

发表评论

登录后才能评论

评论列表(0条)

保存