1200字范文,内容丰富有趣,写作的好帮手!
1200字范文 > android设置xml为背景颜色 android – 如何通过XML将textview的背景颜色设置为全息绿光?...

android设置xml为背景颜色 android – 如何通过XML将textview的背景颜色设置为全息绿光?...

时间:2022-04-14 14:24:54

相关推荐

android设置xml为背景颜色 android – 如何通过XML将textview的背景颜色设置为全息绿光?...

通过Java:

TextView test = (TextView) view.findViewById(R.id.textView2);

test.setBackgroundResource(context.getResources().getColor(android.R.color.holo_green_light));

通过XML:

android:text="2"

android:textSize="200sp"

android:layout_width="fill_parent"

android:layout_height="fill_parent"

android:id="@+id/textView2"

android:style="@style/textviewStyle"

android:background="@android:color/holo_green_light"

android:gravity="center"

android:textColor="#EEEEEE"

android:layout_alignParentRight="true" />

This是关于此主题的API页面

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。