ターゲット 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>