2

私はアンドロイドが初めてです。次のエラーに直面しています: 文字列型は許可されていません

EDIT : image.jpg をResources -> drawwble- hdpiに保存しました

以下のコードを参照してください: Strings.xml

 <drawable name="test_image">image.jpg</drawable>

Activity_main.xml

<ImageView android:id="@+id/imageDisplay"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:contentDescription="@string/desc" 
android:src="@drawable/test_image" />

Android_manifest

<uses-sdk
    android:minSdkVersion="8"
    android:targetSdkVersion="17" />
4

3 に答える 3

3
  1. 画像をres/drawableフォルダーに配置します。
  2. ファイル拡張子も削除します。

それが役立つことを願っています。

于 2013-09-28T18:14:51.320 に答える