我正在開發Android Wear應用程序並嘗試將圖像與文字疊加在一起。將圖像添加到Android Wear應用程序 - 初學者
在main_activity.xml我:
<ImageView
android:id="@+id/myImageView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/ic_launcher1.png" />
<TextView
android:id="@+id/myImageViewText"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignLeft="@id/myImageView"
android:layout_alignTop="@id/myImageView"
android:layout_alignRight="@id/myImageView"
android:layout_alignBottom="@id/myImageView"
android:layout_margin="1dp"
android:gravity="center"
android:text="Hello"
android:textColor="#000000" />
的Android工作室抱怨說cannot resolve symbol @drawable/ic_launcher1.png
所以修復我的文件夾中生成refs.xml
values
refs.xml內容:
<?xml version="1.0" encoding="utf-8"?>
<resources>
<drawable name="ic_launcher1.png">test</drawable>
</resources>
其中d o我添加圖像ic_launcher1.png
?
你檢查任何的答案? – gmetax