温馨提示:本文翻译自stackoverflow.com,查看原文请点击:android - How do I add a background image to an XML file?
android apk image png xml

android - 如何将背景图片添加到XML文件?

发布于 2021-03-22 01:01:04

如何在xml文件中插入背景图片?我想将背景图片添加到我的APK(用于手机)中,我已经找到了xml文件,但是我不知道在哪里插入图片ID,也不知道是android:background还是android:icon有人能帮我吗?XML在图片中,请为图片感到抱歉,我不知道如何在问题中复制xml代码在此处输入图片说明

查看更多

提问者
xxyninaxxy
被浏览
11
2,770 2020-11-02 23:24

完成了android:background="",就像这样:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@drawable/your_image_id"> 
</LinearLayout>