我正在学习Android编程,当我想在活动中添加背景图片hello android
(我们创建项目时的默认应用程序)时遇到问题。我尝试使用较小的图像并且它可以工作,但我想使用一个大图像,当我使用那个大图像时,它不适用于我的设备,即三星Galaxy Grand Duos。
我正在使用android:background="@drawable/my_big_image"
activity_main.xml
<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"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context=".MainActivity"
android:background="@drawable/a_real_big_image"
>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/hello_world"
/>
</RelativeLayout>
图片为png,尺寸为1688x1464。 我将该图像放在每个可绘制的文件夹中。
您知道如何解决此错误吗?
提前致谢。
答案 0 :(得分:0)
尝试使用绘画或其他软件将图像大小调整到大约400px的宽度,然后尝试显示图像。
还可以尝试再次清理和构建项目。