1. ホーム
  2. android

アクティビティに背景画像を追加する方法は?

2023-09-04 05:13:32

質問

テーマまたはImageViewを使用していますか?

どのように解決するのですか?

を使用します。 android:background 属性を使用します。アクティビティ全体に適用したい場合、最も簡単な方法は、レイアウトのルートにそれを置くことです。つまり、RelativeLayoutをxmlの最初に持っている場合、それをここに置きます。

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/rootRL"
    android:orientation="vertical" 
    android:layout_width="fill_parent"
    android:layout_height="fill_parent" 
    android:background="@drawable/background">
</RelativeLayout>