我正在製作一個應用程序,並且由於它最近有很大改進,我已經轉移到了Android Studio 1.3.1。我在activity_main.xml
中有一行ImageButtons
。然後我右鍵點擊drawable
文件夾選擇NewImageAsset
。我已嘗試資產類型Launcher Icons
,Action Bars and Tab Icons
和Notification Icons
並選擇了一張圖片。 Android Studio渲染圖像的hdpi,mdpi,xhdpi和xxhdpi版本。將圖像添加到Android Studio 1.3.1項目
但仍然android:src="@drawable/backwardImage
給我Cannot resolve android:src="@drawable/backwardImage"
。
你如何在android studio 1.3.1中做到這一點?我很確定有一個非常簡單的答案。
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:layout_weight=".10"
android:orientation="horizontal">
<ImageButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/backwardImage"
android:id="@+id/imageButton01"/>
<ImageButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/backwardImage"
android:id="@+id/imageButton02"/>
<ImageButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/backwardImage"
android:id="@+id/imageButton03"/>
</LinearLayout>
問候,
托馬斯
很好聽。 –