我的小部件与目标 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>