截至今天,我有点像 Android 菜鸟。
我尝试将图片设置为背景,如下所示;
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:background="C:\Users\Jacob\Downloads\xmas.jpg"
android:layout_height="match_parent"
tools:context=".MainActivity" >
但是当我构建它时,它会出现;
'描述资源路径位置类型错误:错误:不允许字符串类型(在'背景',值为'C:\ Users \ Jacob \ Downloads \ xmas.jpg')。activity_main.xml /FirstAndroidApp/res/layout 第 1 行 Android AAPT 问题'
当我进入设计器时,它会显示我想要的背景,但只是出现错误。
我不允许以这种方式设置背景吗?还是我错过了什么?