我有一个textview,我会把它的背景颜色设置为全光绿色,如
here.所述
但是,我不知道如何通过XML来做到这一点.可能吗?我目前有:
<TextView android:text="2" android:textSize="200sp" android:layout_width="fill_parent" android:layout_height="fill_parent" android:id="@+id/textView2" android:background="#00FF00" android:gravity="center" android:textColor="#EEEEEE" android:layout_alignParentRight="true" />
但是,我无法改变android:背景以某种方式引用全息绿光.
有没有人有什么建议?我试过“@android:color /”,但没有骰子.
解决方法
通过Java:
TextView test = (TextView) view.findViewById(R.id.textView2); test.setBackgroundResource(context.getResources().getColor(android.R.color.holo_green_light));
通过XML:
<TextView 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" />