fill_parent和wrap_content的问题

Android学习ING,遇到一个错误.

<?xml version="1.0" encoding="utf-8"?>
	<RelativeLayout
                 xmlns:android="http://schemas.android.com/apk/res/android"
                android:layout_width="fill_parent"
                 android:layout_height="wrap_content"
                 android:padding="10dip" 
                 android:background="#0000FF">	
	<TextView 
	android:text="请输入用户名:" 
	android:id="@+id/label" 
	android:layout_width="fill_content" 
	android:layout_height="wrap_content" />
	</RelativeLayout>

 报错:

error: Error: String types not allowed (at 'layout_width' with value 'fill_content').

为什么?按照书上的代码打的!实在不知道错在哪儿了!囧!

你可能感兴趣的:(android,xml)