我有一個名爲quotesList的列表視圖,我試圖用一個適配器來放入信息。 這裏是我的代碼:listView.setAdapter不起作用
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(適配器)線。粗體代表紅色曲線的位置。
Syntax error on token "adapter", VariableDeclaratorId expected after this token
期後的ListView給出了一個錯誤爲好,但我敢肯定它只是涉及到其他錯誤,因爲它的語法錯誤。 令牌上的語法錯誤,錯位結構 在此先感謝!
它的工作!我想我真的只是犯了一個非常基本的錯誤 - 可能很基本,其他任何地方都沒有。謝謝! – Bowiz2