如何从drawable文件夹中显示PNG?

时间:2013-09-12 09:45:51

标签: android png drawable

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

我的arrow.png文件夹中有一个名为res/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文件是否已损坏,但事实并非如此。我已经清理了项目并重新启动,但这仍然无济于事。我错过了什么/忽视?

2 个答案:

答案 0 :(得分:4)

您的图片可能太大。

答案 1 :(得分:0)

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

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

enter image description here

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

enter image description here