读书人

fill_parent和wrap_content的有关问题

发布时间: 2012-09-22 21:54:54 作者: rapoo

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').

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

读书人网 >移动开发

热点推荐