我有問題,我的小部件目標的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>
最好的做法是編譯反對targetSDK版本,你的情況是Android的14 –
項目我這樣做,但是當我這樣做,然後再安裝上如2.1應用其並不好看。 –