我在Android Studio遇到问题。
当我在项目中放置一个按钮时,一切都很好。但是当我设置背景图像(@drawable)并尝试运行我的应用程序时,我收到错误(不幸的是MyApp已停止)。
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity"
android:background="@drawable/bg">
<Button
android:id="@+id/button3"
style="?android:attr/buttonStyleSmall"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="Button 1"
android:drawableLeft="@drawable/icon"
android:drawablePadding="10dp"/>
这段代码有什么问题?