编程语言
首页 > 编程语言> > 将图像添加到Android佩戴应用程序 – 初学者

将图像添加到Android佩戴应用程序 – 初学者

作者:互联网

我正在开发一款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,wear-os
来源: https://codeday.me/bug/20190828/1755252.html