0

我的小部件与目标 android-14 有问题。minSDKVersion 为 7。小部件在 3.1-4.x 下看起来和工作正常,但在 3.1 下我有显示问题。当我将 project.properties 中的目标更改为 target=android-7 时,我的布局文件中出现错误:

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>
4

1 回答 1

2

match_parentfill_parent如果我没记错的话,替换为 2.2 (API 8)。所以替换它,fill_parent它也应该在 2.1 设备上工作。

由于您的 xml 文件中有错误,因此无法生成类 R,这会导致您收到错误。

于 2012-10-08T14:18:00.983 回答