2012-10-08 119 views
0

我有問題,我的小部件目標的android-14。 minSDKVersion是7.小工具看起來很好,在3.1-4.x下工作正常,但在3.1下我有顯示問題。當我改變project.properties目標瞄準= Android的7我得到了我的佈局文件錯誤:Android的佈局兼容性

android:layout_width="match_parent" 
android:layout_height="match_parent" 

error: Error: String types not allowed (at 'layout_width' with value 'match_parent'). 

我也有* .java文件錯誤,R不能被解析爲一個變量。

我的理解是錯誤的,但我怎樣才能改變我的代碼工作與所有目標構成2.1。

感謝您的任何幫助。

<?xml version="1.0" encoding="utf-8"?> 
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" 
    android:id="@+id/myWidget" 
    android:gravity="center" 
    android:layout_width="fill_parent" 
    android:layout_height="fill_parent" 
    android:orientation="horizontal"> 
    <ImageView android:id="@+id/myWidgetBackground" 
     android:layout_width="wrap_content" 
     android:layout_height="fill_parent" 
     android:scaleType="centerInside"/> 
    <ImageView android:id="@+id/item1" 
     android:layout_width="wrap_content" 
     android:layout_height="fill_parent" 
     android:scaleType="centerInside"/> 
    <ImageView android:id="@+id/item2" 
     android:layout_width="wrap_content" 
     android:layout_height="fill_parent" 
    android:scaleType="centerInside"/> 
</RelativeLayout> 
+0

最好的做法是編譯反對targetSDK版本,你的情況是Android的14 –

+0

項目我這樣做,但是當我這樣做,然後再安裝上如2.1應用其並不好看。 –

回答

2

match_parent取代fill_parent 2.2(API 8)如果我沒有記錯的話。所以用fill_parent代替它,它也可以在2.1設備上工作。

當你在你的XML文件中的錯誤,無法生成的R級,這導致您收到的錯誤。

+0

你的權利。但是,將match_parent更改爲較早的fill_parent並且構建超過4.0並不能解決問題。我的小部件背景仍然沒有出現。它必須與一些繪製函數問題,說不定..仍在試圖 –

+0

你從來沒有提到一個背景...您可以加入你的佈局代碼? – WarrenFaith

+0

添加布局代碼。 –