Android用の全画面ヘッダーを作成したいと思います。70 * 480 px (& 9patch) の画像を作成しました。どのようにできるのか?ギャラクシータブを使ってみたのですが、画面いっぱいに横に収まりません。これはコードです:
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:foo="http://schemas.android.com/apk/res/aaa.bbb"
android:id="@+id/db1_root"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@drawable/background">
<ImageView
android:src="@drawable/header"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_gravity="top"
>
</ImageView>
前もって感謝します。