初心者です。Androidアプリ開発の教科書第2版(Java対応)の書籍を参考にアプリを作ろうとしています。
エミュレーターにEditTextが表示されず悩んでいます。
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"/> <EditText android:id="@+id/etInput" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_marginBottom="25dp" android:layout_marginTop="5dp" android:background="#ffffff" android:inputType="text"/> </LinearLayout>
res/values/strings.xmlは以下のとおりです。
<resources> <string name="app_name">画面部品サンプル</string> <string name="tv_msg">お名前を入力してください。</string> </resources>
splitやデザインタブを選択すると挿入されているようですが、エミュレーターには反映されていません。
エミュレーターは以下のように表示されている状況です。
ネットで現在も解決方法を探していますが、反映されません。
よろしくお願いします。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。