`
wzz_momo
  • 浏览: 23076 次
  • 性别: Icon_minigender_1
  • 来自: 北京
文章分类
社区版块
存档分类
最新评论

更改TextView的背景色

阅读更多
1、android:background="@drawable/white"
  <TextView
  android:id="@+id/myTextView02"
  android:layout_width="fill_parent" 
  android:layout_height="wrap_content" 
  android:text="@string/str_textview02"
  android:background="@drawable/white"
  />


2、mTextView02.setBackgroundDrawable
Resources resources = this.getBaseContext().getResources();
		Drawable HippoDrawable = resources.getDrawable(R.drawable.white);
		mTextView01.setBackgroundDrawable(HippoDrawable);
分享到:
评论
1 楼 lenomon 2012-03-15  

相关推荐

Global site tag (gtag.js) - Google Analytics