カテゴリー:
Android Studio
閲覧数:431 配信日:2018-03-17 18:57
「デザインプレビュー」では「Hello Android!」、「エミュレータ」「実機」では「Hello World!」と表示されるケース
▼\app\src\main\res\layout\activity_main.xml
<?xml version="1.0" encoding="utf-8"?>
<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"
tools:context="tokyo.w3c.android0.app20180302.MainActivity">
<TextView
android:layout_width="0dp"
android:layout_height="wrap_content"
android:text="Hello World!"
android:textSize="36sp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toTopOf="parent"
tools:text="Hello Android!" />
</android.support.constraint.ConstraintLayout>
「デザインプレビュー」「エミュレータ」「実機」全てにおいて「Hello Android!」と表示されるケース
▼\app\src\main\res\layout\activity_main.xml
<?xml version="1.0" encoding="utf-8"?>
<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"
tools:context="tokyo.w3c.android0.app20180302.MainActivity">
<TextView
android:layout_width="0dp"
android:layout_height="wrap_content"
android:text="Hello Android!"
android:textSize="36sp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toTopOf="parent"
tools:text="Hello Android!" />
</android.support.constraint.ConstraintLayout>