Android Studioでビルドした時に
コンソール?に
Android resource compilation failed
C:\Users\Akira Koshimizu\AndroidStudioProjects\KukuApp2\app\src\main\res\layout\activity_main.xml:19: error: id 'id/answer button' has an invalid entry name.
C:\Users\Akira Koshimizu\AndroidStudioProjects\KukuApp2\app\src\main\res\layout\activity_main.xml: error: file failed to compile.
と表示され、AVDに何も変化が起きません
自分では教材の通りにやったと思うのですがAVDのパスが通せてないという事でしょうか?
activity_main.xmlにエラーがあると表示されています。activity_main.xmlのソースコードを提示してください。
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity" android:orientation="vertical" android:gravity="center">
<TextView
android:text="9x9="
android:layout_width="match_parent"
android:layout_height="wrap_content" android:id="@+id/questionView"/>
<EditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:inputType="number"
android:ems="10"
android:id="@+id/inputText"/>
<Button
android:text="OK"
android:layout_width="match_parent"
android:layout_height="wrap_content" android:id="@+id/answer Button"/>
</LinearLayout>
この様に記述しています
ありがとう御座います!エミュレーターの設定が上手く出来ていなかったようで解決しました
本当に「エミュレーターの設定」で解決したのですか?ご提示のXMLのままでは決して解決しないと思いますが。