2

这是一个简单的代码,用于显示带有图像和文本的简单列表视图。它给出了两个错误。在声明中,

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);
    }
}
4

3 回答 3

1

愿这对您有所帮助:

伙计,您的代码之间from arrayto array代码中的映射错误..
因为您from array有 3 个对象,而您的to array中有 2 个对象..
所以引发了这个异常..

只需在您的代码中更改此行并再次运行您的项目:

// Keys used in Hashmap
        String[] from = { "flag","txt" };
于 2013-08-12T12:23:48.610 回答
0

看起来您的项目没有正确构建。

检查 Eclipse 是否R.javagen文件夹中生成了您的文件。

如果没有,请检查res文件中的错误,更正它并构建您的项目。

如果R.java文件夹中存在gen文件,请检查您是否已将其正确导入到您的 java 文件中。

于 2013-08-12T12:16:55.587 回答
0

在 Eclipse 中,尝试转到 Project-> Clean... 然后选择您工作区中的所有项目,或者只选择您当前正在处理的项目并点击确定。这将重建您的项目以及处理 android 中的一些其他问题,这些问题有时会导致 R.java 文件在您更改 xml 布局文件后不更新。

于 2013-08-12T14:07:12.693 回答