我的目标android-14的小部件有问题。 minSDKVersion是7. Widget看起来和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>
答案 0 :(得分:2)
match_parent
将fill_parent
替换为2.2(API 8)。所以用fill_parent
替换它,它也适用于2.1设备。
由于您的xml文件中存在错误,因此无法生成类R,这会导致您收到错误。