首页 > 代码库 > Android 代码修改按钮上的图片
Android 代码修改按钮上的图片
如果要在Button上面添加一个图片,可以在xml中添加属性:
[html] view plaincopy
- <Button
- android:id="@+id/AppBtn"
- android:layout_centerVertical="true"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_alignParentRight="true"
- android:drawableLeft="@drawable/defaultrewardicon"
- android:text="" />
[html] view plaincopy
- android:drawableLeft="@drawable/defaultrewardicon"
如果要在代码中动态修改这个图片,用下面的方法:
[java] view plaincopy
- Drawable rewardIcon=getResources().getDrawable(m_RewardIcon);
- if(rewardIcon!=null)
- {
- rewardIcon.setBounds(0, 0, rewardIcon.getMinimumWidth(), rewardIcon.getMinimumHeight());
- appBtn.setCompoundDrawables(rewardIcon, null, null, null);
- }
Android 代码修改按钮上的图片
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。