quotesListというリストビューがあり、アダプターを使用して情報を入力しようとしています。これが私のコードです:
ListView listView = (ListView) findViewById(R.id.quotesList);
String[]values={"Android","iOS","Windows Phone","Other Stuff"};
ArrayAdapter<String> adapter=new ArrayAdapter<String>(this,android.R.layout.simple_list_item_1, android.R.id.text1,values);
listView.setAdapter(adapter);
Eclipseが示す唯一のエラーは、listView.setAdapter(adapter)行にあります。太字は赤い波線がどこにあるかを表しています。
Syntax error on token "adapter", VariableDeclaratorId expected after this token
listViewの後の期間にもエラーが発生しますが、構文エラーとして、他のエラーに関連していると確信しています。トークンの構文エラー、構成の置き忘れよろしくお願いします。