这是一个简单的代码,用于显示带有图像和文本的简单列表视图。它给出了两个错误。 在声明,
int[] to = { R.id.flag,R.id.txt}; //error: flag cannot be resolved or is not a fied
lv = ( ListView ) findViewById(R.id.listview); //error: listview cannot be resolved or is not a field.
希望你能容纳我!
问候
package com.example.amjad_3;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import android.app.Activity;
import android.os.Bundle;
import android.widget.ListView;
import android.widget.SimpleAdapter;
public class MainActivity extends Activity {
// Array of strings storing country names
String[] countries = new String[] {
"India",
"Pakistan",
"Sri Lanka",
"China",
"Bangladesh",
"Nepal",
"Afghanistan",
"North Korea",
"South Korea",
"Japan"
};
// Array of integers points to images stored in /res/drawable-ldpi/
int[] flags = new int[]{
R.drawable.india,
R.drawable.pakistan,
R.drawable.srilanka,
R.drawable.china,
R.drawable.bangladesh,
R.drawable.nepal,
R.drawable.afghanistan,
R.drawable.nkorea,
R.drawable.skorea,
R.drawable.japan
};
// Array of strings to store currencies
ListView lv;
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
// Each row in the list stores country name, currency and flag
List<HashMap<String,String>> aList = new ArrayList<HashMap<String,String>>();
for(int i=0;i<10;i++){
HashMap<String, String> hm = new HashMap<String,String>();
hm.put("txt", "Country : " + countries[i]);
hm.put("flag", Integer.toString(flags[i]) );
aList.add(hm);
}
// Keys used in Hashmap
String[] from = { "flag","txt","cur" };
// Ids of views in listview_layout
int[] to = { R.id.flag,R.id.txt};
// Instantiating an adapter to store each items
// R.layout.listview_layout defines the layout of each item
SimpleAdapter adapter = new SimpleAdapter(getBaseContext(), aList, R.layout.listview, from, to);
// Getting a reference to listview of main.xml layout file
lv = ( ListView ) findViewById(R.id.listview);
// Setting the adapter to the listView
lv.setAdapter(adapter);
}
}
答案 0 :(得分:1)
这可以帮到你:
好友你在代码中from array
和to array
之间的映射错误了。
由于您的from array
有3个对象,而您的to array
中有2个对象..
因此引发此异常..
只需更改代码中的这一行&amp;再次运行你的项目:
// Keys used in Hashmap
String[] from = { "flag","txt" };
答案 1 :(得分:0)
看起来你的项目没有正确构建。
检查Eclipse是否在R.java
文件夹中生成了gen
文件。
如果没有,请检查res
文件中的错误,更正错误并构建项目。
如果R.java
文件夹中存在gen
文件,请检查您是否已在java文件中正确导入。
答案 2 :(得分:0)
在eclipse中尝试转到Project-&gt;清理......然后选择工作区中的所有项目或只选择当前正在处理的项目并点击确定。这将重建您的项目以及处理android中的一些其他问题,这些问题有时会导致更改xml布局文件后R.java文件无法更新。