我正在开发一个小的Android应用程序,我有一个布局的问题,我一直在尝试在我的xml中找到错误,但我找不到…
我得到的错误是“你必须提供一个layout_width属性”,但我做到了,它仍然不起作用…
这是我的XML文件:
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="vertical" >
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:weightSum="100" >
android:layout_height="fill_parent"
android:layout_weight="70"
/>
android:layout_height="fill_parent"
android:layout_weight="10"
/>
android:layout_height="wrap_content"
android:layout_weight="20"
/>
android:layout_width="fill_parent"
android:layout_height="wrap_content"
/>
任何想法???这让我疯狂!
谢谢!!