Android ListView不合作

时间:2013-04-17 00:18:54

标签: java android listview arraylist android-arrayadapter

我最近一直在研究Android ListViews,但我遇到了一些问题。我查看了一些教程,并获得了最基本的ListViews工作正常。但现在我想创建一个显示一系列对象的ListView。我以为我做的一切都是正确的。我的代码不会产生任何错误,但我想创建的列表根本不会显示。显然,我不确定为什么。

此应用程序的目的是编制气象站和机场列表并显示信息(例如名称,ID#,坐标等) - 所有这些信息都是从XML文档中解析出来并包含在Arraylist中(内置)通过一个单独的类与适当的构造函数/ getter / setter)。基本上我得到一个站列表 - 然后从该列表 - 一个设置为适配器的站名列表。我的ListView应该只显示每个电台的名称,但无济于事。

我测试了我的Parser和My Arrays。这一切都有效,只是没有显示。根据所有教程,我的逻辑应该正确到我的适配器。有没有人有什么建议?我觉得我已经筋疲力尽了所有的解决方案。我的代码发布在下面:

public class MainActivity extends Activity {

//local variables
    String station_id;
    String state;
    String station_name;
    double latitude;
    double longitude;
    String html_url;

//ArrayList<String> stationList = new ArrayList<String>();
public ArrayList<Station> stationList = new ArrayList<Station>();

 private ListView stationName;
 private ArrayAdapter<String> arrayAdapter;



 //Method for DOM Parser
  public void readXML(){

    try {

        //new xml file and Read
        File file1 = new File("src/fl_wx_index3.xml");
        DocumentBuilderFactory dbf = DocumentBuilderFactory.newInstance();
        DocumentBuilder db = dbf.newDocumentBuilder();
        Document doc = db.parse(file1);
        doc.getDocumentElement().normalize();

        NodeList nodeList = doc.getElementsByTagName("station");

        for (int i = 0; i < nodeList.getLength(); i++) {

            Node node = nodeList.item(i);

            if(node.getNodeType() == Node.ELEMENT_NODE){

                final Element first = (Element) node;

                station_id = first.getElementsByTagName("station_id").item(0).getTextContent();
                state = first.getElementsByTagName("state").item(0).getTextContent();
                station_name = first.getElementsByTagName("station_name").item(0).getTextContent();
                latitude = Double.parseDouble(first.getElementsByTagName("latitude").item(0).getTextContent());
                longitude = Double.parseDouble(first.getElementsByTagName("longitude").item(0).getTextContent());
                html_url = first.getElementsByTagName("html_url").item(0).getTextContent();

                //iterate thru list, returning names of each airport
                stationList.add(new Station(station_id, state, station_name, latitude, longitude, html_url));

            }

        }
        } catch (Exception e) {
        System.out.println("XML Pasing Excpetion = " + e);
        }

}



@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
    // Initialize the UI components
    stationName = (ListView) findViewById(R.id.listView1);

    //object for method call to read XML document
        MainActivity activity1 = new MainActivity();
        activity1.readXML();

    //List to contain Weather station Names
     final ArrayList<String> nameList = new ArrayList<String>();

     for (int i = 0; i < stationList.size(); ++i) {
          nameList.add(stationList.get(i).getStationName());
        }

    arrayAdapter = new ArrayAdapter<String>(this, android.R.layout.simple_list_item_1, nameList);

    // By using setAdapter method, you plugged the ListView with adapter
    stationName.setAdapter(arrayAdapter);

}

@Override
public boolean onCreateOptionsMenu(Menu menu) {
    // Inflate the menu; this adds items to the action bar if it is present.
    getMenuInflater().inflate(R.menu.main, menu);
    return true;
}

}

以下是XML示例:

 <?xml version="1.0" encoding="UTF-8"?>
<wx_station_index>
    <credit>NOAA's National Weather Service</credit>
    <credit_URL>http://weather.gov/</credit_URL>
    <image>
            <url>http://weather.gov/images/xml_logo.gif</url>
            <title>NOAA's National Weather Service</title>
            <link>http://weather.gov</link>
    </image>
    <suggested_pickup>08:00 EST</suggested_pickup>
    <suggested_pickup_period>1140</suggested_pickup_period>

<station>
    <station_id>NFNA</station_id>
    <state>FJ</state>
    <station_name>Nausori</station_name>
    <latitude>-18.05</latitude>
    <longitude>178.567</longitude>
    <html_url>http://weather.noaa.gov/weather/current/NFNA.html</html_url>
    <rss_url>http://weather.gov/xml/current_obs/NFNA.rss</rss_url>
    <xml_url>http://weather.gov/xml/current_obs/NFNA.xml</xml_url>
</station>

<station>
    <station_id>KCEW</station_id>
    <state>FL</state>
            <station_name>Crestview, Sikes Airport</station_name>
    <latitude>30.79</latitude>
    <longitude>-86.52</longitude>
            <html_url>http://weather.noaa.gov/weather/current/KCEW.html</html_url>
            <rss_url>http://weather.gov/xml/current_obs/KCEW.rss</rss_url>
            <xml_url>http://weather.gov/xml/current_obs/KCEW.xml</xml_url>
</station>

活动主XML:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context=".MainActivity" >

<TextView
    android:id="@+id/textView1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="@string/hello_world" />

<ListView
    android:id="@+id/listView1"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_below="@+id/textView1"
    android:layout_marginTop="115dp"
    android:layout_toRightOf="@+id/textView1" >
</ListView>

2 个答案:

答案 0 :(得分:0)

由于您的OnCreate

,您的应用程序崩溃了

而不是

MainActivity activity1 = new MainActivity();
activity1.readXML();

你应该真正打电话给

readXML();

答案 1 :(得分:0)

首先:深呼吸并放松,你不是唯一一个(这对我自己也是一种解脱),我对ListViews最沮丧,你真正需要的,被称为自定义列表适配器。我花了很长时间才弄清楚,最后感谢上帝,我有一个不错的处理。

1-如前所述,您不希望创建一个新活动来调用readXML()它与您的活动位于同一个类中,因此只需调用它即可。

2-将public ArrayList<Station> stationList = new ArrayList<Station>();更改为private List<Station> stationList = new ArrayList<Station>();。无需公开,List是比ArrayList()更好的变量。

3-您可以发布'main_activity.xml`文件。

4-你说你的解析器是有效的,所以你100%调用readXML()后变量stationList包含dataXML中的所有值吗?

然后告诉我。