我试图在我的应用程序中设置主要活动的背景,就像这样: -
<?xml version="1.0" encoding="utf-8"?>
<android.support.v4.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:background="@drawable/background"
android:id="@+id/drawer_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
tools:openDrawer="start">
但是代码给了我错误:
The following classes could not be instantiated:
- android.support.v4.widget.DrawerLayout (Open Class, Show Exception, Clear Cache)
我不知道为什么会这种情况发生。@drawable/background
是分辨率为1080x1920的图像。我尝试给出一种颜色而不是图像,然后效果非常好。但是当涉及到图像时却出错了。我错过了什么?
请帮帮我。
答案 0 :(得分:0)
在代码中尝试setBackground:
layout.setBackground(getResources().getDrawable(R.drawable.background));