画面に2枚のPNG画像を描画する方法を知りたいのですが。
私のXMLレイアウト:(paperxml.xmlという名前)
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/layoutid"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<ImageView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/paperid"
android:src="@drawable/paperrepresentation"
/>
<ImageView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/rockid"
android:src="@drawable/rockrepresentation"
android:layout_alignTop="@id/paperid"
/>
</RelativeLayout>
XMLレイアウトをインスタンス化し、両方のImageViewを同時に画面に表示するJavaコードは何でしょうか。呼び出すだけsetContentView(R.drawable.paperxml);
で、起動時にアプリケーションがクラッシュします。