4

我一直试图在我的活动中显示一个 PNG 文件,但收效甚微。

我的文件夹中有一个名为arrow.pngres/drawable文件,我的代码如下:

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=".Main" >

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="@string/hello_world" />

    <ImageView
        android:id="@+id/image"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_centerHorizontal="true"
        android:layout_centerVertical="true"
        android:src="@drawable/arrow" />

</RelativeLayout>

爪哇:

public class Main extends Activity {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        ImageView imgView = (ImageView) findViewById(R.id.image);
        imgView.setImageResource(R.drawable.arrow);
    }
}

在我阅读过的所有指南/示例中,它们都给了我与上面创建的相同的说明。但是当我运行这个程序时,什么都没有显示(TextView 显示得很好——图像不存在)。我很困惑为什么会这样,因为没有错误消息。

我检查了 PNG 文件是否已损坏,但事实并非如此。我已经清理了项目并重新启动,但这仍然没有帮助。我错过/忽略了什么?

4

2 回答 2

4

您的图像可能太大。

于 2013-09-13T06:31:48.897 回答
0

您可以创建一个新的可绘制资源文件夹并以高密度格式存储。

右键res->新建-> Android资源目录

在此处输入图像描述

您可以根据图像质量选择浓度。

在此处输入图像描述

于 2020-07-25T11:18:28.360 回答