Android 中与 ImageButton 相关的 PNG 文件应该放在哪里?
我对 Android 很陌生。
我创建了一个图像按钮。 main.xml 包含如下代码段。
<ImageButton
android:id="@+id/button1"
android:layout_width="50px"
android:layout_height="50px"
android:src="@drawable/cat"
android:layout_x="50px"
android:layout_y="52px"
>
我必须把我拥有的“cat.png”放在哪里。我需要将其重命名为其他名称吗?
I'm very new to Android.
I created a ImageButton. The main.xml includes code segment as following.
<ImageButton
android:id="@+id/button1"
android:layout_width="50px"
android:layout_height="50px"
android:src="@drawable/cat"
android:layout_x="50px"
android:layout_y="52px"
>
Where do i have to put the "cat.png" i have. Do i need to rename it to something else?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
将其放入 Android 项目的
res/drawable/
文件夹中。保留名称cat.pngPut it in the
res/drawable/
folder in your Android project. Keep the name cat.png您可以简单地将其放入任何一个文件夹中,无需为此更改 xml。
you can simply put in any one folder it will work no need to change xml for that.