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 に答える