用eclipse编程,而不是用XML识别我的android代码

时间:2011-04-07 05:03:19

标签: android xml eclipse color-scheme

我是eclipse和编程的新手,我正在关注视频教程,但我无法弄清楚为什么我的eclipse无法识别编码。在视频中我看到他添加了

android:gravity=center
android:background="@color/red"

它会改变颜色,但我不会改变颜色.. android:gravity更改为粉红色,= ...更改为蓝色,但我保持黑色,当我查看图形布局时,代码未注册

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent" android:orientation="vertical">
    android:gravity=center
    android:background="@color/red"
<TextView  
    android:layout_height="wrap_content" 
    android:text="@string/red" android:layout_width="wrap_content"/>
</LinearLayout>

3 个答案:

答案 0 :(得分:2)

以下是更正的代码,

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical"
    android:gravity="center"
    android:background="#ff0000"
    >
    <TextView  
         android:layout_height="wrap_content" 
         android:text="@string/red" 
         android:layout_width="wrap_content"
         />
</LinearLayout>

也可以在XML文件中定义颜色。 在/ res / values中创建一个新的xml文件名color.xml。 将以下代码粘贴到

<color name="red">#FF0000</color>

另外请确保strings.xml中包含以下行

 <string name="red">Your text</string>

并按如下方式更改代码。

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical"
    android:gravity="center"
    android:background="@color/red"
    >
    <TextView  
         android:layout_height="wrap_content" 
         android:text="@string/red" 
         android:layout_width="wrap_content"
         />
</LinearLayout>

答案 1 :(得分:0)

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent" android:orientation="vertical">
     -----------------
    android:gravity=center
    android:background="@color/red"
    -----------------

那一点是错的。它已在布局对象中声明。删除它。

<TextView  
    android:layout_height="wrap_content" 
    android:text="@string/red" android:layout_width="wrap_content"/>
</LinearLayout>

您是否在字符串xml文件下的资源文件夹中声明了红色?

Read

答案 2 :(得分:0)

  • 缺少android:gravity="center"

  • 中的引号
  • 您需要创建颜色资源:<color name="red">#FF0000</color>

您可以在此处找到颜色资源的文档:http://developer.android.com/guide/topics/resources/more-resources.html