android 背景画像に写真を指定する

app-> res-> drawable でpasteする

画像が置かれました。

富士ソフトの写真をbackground.JPGとして、app-> res-> drawableに置く
activity_main.xmlで以下の一文を追加
android:background=”@drawable/background”

<android.support.constraint.ConstraintLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@drawable/background"
    tools:context=".MainActivity">

は~~~????なにこれ
意味わからん。@drawableで、ディレクトリを指定しているのか?

directory structureで、v24の方を指定すると、画像は表示されませんね。