关于网友提出的“各位大神---求助关于背景颜色的问题”问题疑问,本网通过在网上对“各位大神---求助关于背景颜色的问题”有关的相关答案进行了整理,供用户进行参考,详细问题解答如下:
问题:各位大神---求助关于背景颜色的问题
描述: main,.xml
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@drawable/grey"
>
<>
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/hello"
/>
color.xml
#808080FF
#FFFFFFF
没报错跑起来背景还是没变,这是为什么呢
解决方案1:
+1
刚才引用错了。。。
解决方案2: color.xml放在res/values下
#808080FF
#FFFFFFFF
main.xml
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@drawable/white"
android:orientation="vertical" >
<>
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/hello" />
上面本机上给你试了一下,没问题,你的代码错误就刚才说的grey没定义,white的F是7个,其它没错误
以上介绍了“各位大神---求助关于背景颜色的问题”的问题解答,希望对有需要的网友有所帮助。
本文网址链接:http://www.codes51.com/itwd/807318.html