我試圖使用的RelativeLayout內一個ListView但是當我運行我的應用程序我得到消息一個RuntimeException:獲得消息:二進制XML文件行#2:你必須提供一個layout_width屬性
二進制XML文件行#2:您必須提供一個layout_width屬性。
我試着把layout_width屬性放在xml資源文件的每個可以想象的地方,但到目前爲止沒有運氣。
我試圖與這行代碼來填充ListView:
.setListAdapter(new ArrayAdapter(this,
R.layout.tablerow3, R.id.label,
items));
這裏的tablerow3.xml內容:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android">
android:layout_width="20dp"
android:layout_height="5dp"
android:id="@+id/tablerow01">
<Label android:id="@+id/label01"
android:layout_width="5dp"
android:layout_height="5dp"
android:textColor="@color/solid_white"
android:singleLine="true"/>
<Label android:id="@+id/label02"
android:layout_width="5dp"
android:layout_height="5dp"
android:textColor="@color/solid_white"
android:singleLine="true"/>
</LinearLayout>
這裏包含的RelativeLayout(forex2.xml)的XML:
<?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="fill_parent">
<Button android:text="Static Button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:id="@+id/button_id">
</Button>
<Spinner android:id="@+id/spinner1"
android:layout_width="match_parent"
android:layout_toRightOf="@id/button_id"
android:layout_alignParentTop="true"
android:layout_height="wrap_content"
android:drawSelectorOnTop="true"
/>
<ListView android:id="@android:id/list"
android:layout_width="5dp"
android:layout_height="5dp"
android:layout_alignParentBottom="true"
/>
<!-- android:layout_width="wrap_content"
android:layout_height="wrap_content" -->
</RelativeLayout>
謝謝 - 不能相信我錯過了。 現在我正在處理下一條錯誤消息:二進制XML文件行#6:錯誤使類標籤膨脹。 – opike 2011-01-13 00:00:28