我一直试图在我的活动中显示一个 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 文件是否已损坏,但事实并非如此。我已经清理了项目并重新启动,但这仍然没有帮助。我错过/忽略了什么?