更改TextView的背景色
程序员文章站
2022-06-08 16:11:10
...
1、android:background="@drawable/white"
2、mTextView02.setBackgroundDrawable
<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);
上一篇: el-tree 修改选中状态背景色
下一篇: Winform单例窗体