首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 移动开发 > 移动开发 >

TextView根本使用

2012-07-22 
TextView基本使用改变背景颜色:Resources resources getBaseContext().getResources()Drawable HippoDr

TextView基本使用
改变背景颜色:
Resources resources = getBaseContext().getResources();
Drawable HippoDrawable = resources.getDrawable(R.drawable.white);
mTextView.setBackgroundDrawable(HippoDrawable);
改变字体颜色:
mTextView.setTextColor(Color.RED);
置换文字:
CharSequence str1 = getString(R.string.str1);
mTextView.setText(str1+"11");

热点排行