2011-01-12 51 views
2

我試圖使用的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> 

回答

4

的錯誤是在這裏:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"> 
     android:layout_width="20dp" 
     android:layout_height="5dp" 
     android:id="@+id/tablerow01"> 

查看以LinearLayout開頭的行的末尾。您留下了一個關閉標籤的>,這意味着隨後的屬性被XML解析器視爲LinearLayout標籤的子文本塊。只要刪除額外的>,你會沒事的。

+0

謝謝 - 不能相信我錯過了。 現在我正在處理下一條錯誤消息:二進制XML文件行#6:錯誤使類標籤膨脹。 – opike 2011-01-13 00:00:28

1

關於您的評論,標籤沒有Android小部件。您可能需要一個TextView。

1

這不是您的具體問題的答案,而是相同錯誤的另一個原因。

我有一個類似的錯誤,只是我的問題是,我進入的模式,而不是模式

即。

LinearLayout xmlns:android="http://schema.android.com/apk/res/android" // wrong 

LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" // correct. 

希望這有助於他人。

相關問題