XMLレイアウト(全般)

・xmlnsはXML名前空間(android,app,tool等あるが個々のviewで用いる文字列と同じであれば良い。
例えば「app」という文字列であれば、ConstraintLayoutのxmlns:app=”…と EditTextのapp:layout_contrraintStart_toStartOf…が同じ「app」)

・idは英数小文字と_で命名 ex android:id=”@+id/cost_of_service”

・ConstraintLayout 内のビューには match_parent は使用できない。代わりに0dpを使用
Viewの幅をConstraintLayoutの幅と同じにするには、
1.Viewの始端と親の始端の間、Viewの終端と親の終端の間にそれぞれ制約を設定し、
2.幅を 0 dp に設定します。

<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.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"
    tools:context=".MainActivity">

    <EditText
        android:id="@+id/cost_of_service"
        android:layout_width="160dp"
        android:layout_height="wrap_content"
        android:hint="@string/cost_of_service"  <!-- ヒント文字列 -->
        android:inputType="numberDecimal"		<!-- 入力タイプ -->
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent" />

    <TextView
        android:id="@+id/service_question"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="@string/how_was_the_service"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toBottomOf="@id/cost_of_service" />

</androidx.constraintlayout.widget.ConstraintLayout>

トレーニング > KOTLIN を用いた ANDROID の基本 > レイアウト > ユーザー入力1 > Android 用の XML レイアウトを作成する > 4.XMLでレイアウトを作成する