2011-06-14 36 views
0

就在這個系中發現以下的GridView XMLGridView的XML錯誤

多個註解錯誤錯誤:字符串類型不允許(在 'layout_width',值爲 'match_parent')。 - 錯誤:錯誤:字符串類型不允許(在'layout_height',值爲 'match_parent')。

<GridView xmlns:android="http://schemas.android.com/apk/res/android" 
     android:id="@+id/albums" 
     android:layout_width="match_parent" 
     android:layout_height="match_parent" 
     android:paddingTop="2dip" 
     android:numColumns="auto_fit" 
     android:columnWidth="148dp" 
     android:stretchMode="spacingWidthUniform" 
     android:drawSelectorOnTop="false" 
     android:cacheColorHint="#000000" 
     android:background="#000000" 
     android:listSelector="#000000"/> 

回答

2

match_parent採用的是Android 2.2引入。如果您的程序使用較低版本的Android構建,那麼這些程序可能無法識別match_parent。 match_parent與fill_parent相同。將代碼中的match_parent更改爲fill_parent,否則可以增加android構建版本以支持match_parent。看看here

謝謝 Deepak