Android Studio 入門【 文字枠の追加 】

3分で学ぶAndroidStudio【文字枠の追加】
前回学習した「キャラクターの表示」に「文字枠」を追加する動画です。
この動画の前に「キャラクターの表示」を済ませておいてください。

ポイント【プログラムに対応】プログラムで文字を自由に変更可能
ポイント【プログラムに対応】プログラムで文字を自由に変更可能

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".MainActivity">

    <ImageView
        android:id="@+id/imageView"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_centerHorizontal="true"
        android:layout_centerVertical="true"
        android:src="@drawable/character" />

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="New Text"
        android:id="@+id/textView"
        android:layout_alignParentBottom="true"
        android:layout_centerHorizontal="true"
        android:layout_marginBottom="20dp"
        android:textSize="40dp" />

</RelativeLayout>