Androidアプリ開発の入門書で勉強しているものです。
入門書で、まずhello world!を表示させるプログラムを作るところは正しく動作し、別の新しいプロジェクトで、違うタイトル、メッセージをstring.xml、activity_main.xmlに書き加えたのですが、アプリを起動してもhello world!と表示されてしまいます。
教科書に書いてあるとおりに進めているので、ここで躓いています。解決法はありますでしょうか?```java
コード
<resources> <string name="app_name">画面部品サンプル</string> <string name="tv_msg">お名前を入力してください。</string> </resources> //以下activity_main.xml <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" android:background="#A1A9BA" android:orientation="vertical"> <TextView android:id="@+id/tvLabelInput" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginBottom="10dp" android:layout_marginTop="5dp" android:background="#ffffff" android:text="@string/tv_msg" android:textSize="25sp"/> </LinearLayout>
あなたの回答
tips
プレビュー