# 2021.10.15(月)① ###### tags: `AN25` `授業ノート` 画像ファイルの置き場所 ・res¥drawable ・画像ファイル名規約  全角文字、半角大文字、ハイフンを含むとエラー ・png、jpeg、gifのみ ![](https://i.imgur.com/S488zF2.png) ![](https://i.imgur.com/qy04OP1.png) ![](https://i.imgur.com/GmZgB0s.png) ![](https://i.imgur.com/C39k5US.png) :::spoiler main_activity.xml ```xml= <?xml version="1.0" encoding="utf-8"?> <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="300sp" android:layout_height="300sp" android:padding="20sp" android:background="@drawable/masu"> <ImageButton android:id="@+id/left_top" android:layout_height="75sp" android:layout_width="75sp" android:background="@drawable/none" android:layout_above="@+id/center" android:layout_toLeftOf="@+id/center" /> <ImageButton android:id="@+id/top" android:layout_height="75sp" android:layout_width="75sp" android:background="@drawable/none" android:layout_above="@+id/center" android:layout_alignLeft="@+id/center" /> <ImageButton android:id="@+id/right_top" android:layout_height="75sp" android:layout_width="75sp" android:background="@drawable/none" android:layout_above="@+id/center" android:layout_toRightOf="@+id/center" /> <ImageButton android:id="@+id/left" android:layout_height="75sp" android:layout_width="75sp" android:background="@drawable/none" android:layout_toLeftOf="@+id/center" android:layout_alignTop="@+id/center" /> <ImageButton android:id="@+id/center" android:layout_height="75sp" android:layout_width="75sp" android:layout_margin="20sp" android:background="@drawable/none" android:layout_centerInParent="true" /> <ImageButton android:id="@+id/right" android:layout_height="75sp" android:layout_width="75sp" android:background="@drawable/none" android:layout_toRightOf="@+id/center" android:layout_alignTop="@+id/center" /> <ImageButton android:id="@+id/left_bottom" android:layout_height="75sp" android:layout_width="75sp" android:background="@drawable/none" android:layout_below="@+id/center" android:layout_toLeftOf="@+id/center" /> <ImageButton android:id="@+id/bottom" android:layout_height="75sp" android:layout_width="75sp" android:background="@drawable/none" android:layout_below="@+id/center" android:layout_alignLeft="@+id/center" /> <ImageButton android:id="@+id/right_bottom" android:layout_height="75sp" android:layout_width="75sp" android:background="@drawable/none" android:layout_below="@+id/center" android:layout_toRightOf="@+id/center" /> </RelativeLayout> ``` ::: 雑談 (0→やまぴ 1→みや 2→やすい 3→りょうくん 4→アミカ 5→やの 6→山田) --- <span style="color: #ff3333">aaa</span> <span style="text-decoration: underline">aaa</span>