Android エラー error invalid symbol ‘continue’
Androidのレイアウトファイルに、下記のように書き、
<ImageView android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginTop="10dp" android:src="@drawable/continue" />
drawableにcontinue.pngを入れていたところ
Consoleに
error: invalid symbol: 'continue'
と出て、ビルドできなくなってしまいました。
答えがこちらのサイトにあり
http://stackoverflow.com/questions/7850069/error-in-strings-xml-invalid-symbol-continue
continueはJavaの予約語だからオブジェクトの名前に使っちゃいけないってことでした。
あ、そう。そういうのあったね…(´ω`)
という感じです。
bt_continue とかに名前を変更したら解決です。