我正在开发一款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工作室抱怨无法解析符号@ drawable / ic_launcher1.png
所以要修复我在文件夹值中生成refs.xml
refs.xml内容:
<?xml version="1.0" enCoding="utf-8"?><resources> <drawable name="ic_launcher1.png">test</drawable></resources>
我在哪里添加图像ic_launcher1.png?
解决方法:
你不需要refs.xml,但你需要文件夹res和res / drawable以及文件ic_launcher1.png在drawable文件夹中
Drawable Resources
你的xml必须是这样的
<ImageVIEw androID:ID="@+ID/myImageVIEw" androID:layout_wIDth="wrap_content" androID:layout_height="wrap_content" androID:src="@drawable/ic_launcher1" />
总结 以上是内存溢出为你收集整理的将图像添加到Android佩戴应用程序 – 初学者全部内容,希望文章能够帮你解决将图像添加到Android佩戴应用程序 – 初学者所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)