背景画像が繰り返されるレイアウトを作成したい。このチュートリアルを検索して見つけまし たが、うまくいかないようです! 以下は activity_main.xml を示しています
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@drawable/backrepeat"
android:gravity="center_horizontal"
android:orientation="vertical" >
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/app_name" />
</LinearLayout>
これは backrepeat.xml です
<?xml version="1.0" encoding="utf-8"?>
<bitmap xmlns:android="http://schemas.android.com/apk/res/android"
android:dither="true"
android:src="@drawable/bg"
android:tileMode="repeat" />
また、backrepeat.xml を drawable フォルダーに配置します。コードを追加または削除する必要がありますか?
ありがとう