Chinaunix首页 | 论坛 | 博客
  • 博客访问: 840656
  • 博文数量: 182
  • 博客积分: 1992
  • 博客等级: 上尉
  • 技术积分: 1766
  • 用 户 组: 普通用户
  • 注册时间: 2010-10-18 11:49
文章分类

全部博文(182)

文章存档

2019年(1)

2016年(5)

2015年(29)

2014年(38)

2013年(21)

2012年(36)

2011年(52)

我的朋友

分类: LINUX

2011-08-17 15:47:06

  1. TextView t = (TextView) findViewById(R.id.aaa);
  2.         StateListDrawable stateListDrawable = new StateListDrawable();
  3.         stateListDrawable.addState(new int[] {-android.R.attr.state_pressed},
  4.           getResources().getDrawable(R.drawable.phone));
  5.         
  6.         stateListDrawable.addState(new int[] {android.R.attr.state_pressed},
  7.           getResources().getDrawable(R.drawable.gallery));
  8.         
  9.         t.setCompoundDrawablesWithIntrinsicBounds(null,
  10.           stateListDrawable,
  11.                 null, null);
阅读(718) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~