欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

更改TextView的背景色

程序员文章站 2022-06-08 16:11:10
...
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);
相关标签: Android Java