アプリの背景に画像を設定するには、
resフォルダにdrawableフォルダを作成し、その中にbg.pngを入れる。
そのあと、AndroidManifest.xmlに
android:background=”@drawable/bg”を
加えると、表示されます。
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" android:layout_width="fill_parent" android:layout_height="fill_parent" android:background="@drawable/bg" > <Button android:id="@+id/myButton" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="次のActivityへ" /> </LinearLayout>
その他のコードは、Intentを使って、Activityを呼び出す
と同じです。
コメント