我正在尝试将文本文件读入我的Android应用程序,然后将该文件的内容打印到3列的屏幕上。 文本文件的格式为“第1列数据 - 第2列数据 - 第3列数据”。我正在将信息读入ArrayList>然后尝试将其打印到屏幕上。我有两个xml文件,我正在使用。
包含我的列表
的那个<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:paddingTop="4dip"
android:paddingBottom="6dip"
android:orientation="horizontal"
android:layout_width="fill_parent"
android:layout_height="wrap_content">
<ListView
android:id="@android:id/list"
android:layout_width="match_parent"
android:layout_height="match_parent" />
<ListView
android:id="@+id/list"
android:layout_width="match_parent"
android:layout_height="match_parent" />
</LinearLayout>
和包含我的TextViews
的那个<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:paddingTop="4dip"
android:paddingBottom="6dip"
android:orientation="horizontal"
android:layout_width="fill_parent"
android:layout_height="wrap_content">
<ListView
android:id="@android:id/list"
android:layout_width="match_parent"
android:layout_height="match_parent" />
<TextView android:id="@+id/flitem"
android:layout_width="50dip"
android:layout_height="wrap_content"/>
<TextView android:id="@+id/flgrams"
android:layout_width="70dip"
android:layout_height="wrap_content"
android:layout_weight="1"/>
<TextView android:id="@+id/flpointsLayout"
android:layout_width="60dip"
android:layout_height="wrap_content"
android:layout_weight="1"/>
</RelativeLayout>
我在第一个xml中指定了两个列表,因为当我将android:name作为
时android:id="@android:id/list"
我不喜欢使用R.id.list选择列表但是如果我使用
指定它android:id="@+id/list"
我得到一个空指针异常。
我的类扩展ListFragment中的代码如下
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.util.ArrayList;
import java.util.HashMap;
import android.app.Activity;
import android.content.Context;
import android.os.Bundle;
import android.support.v4.app.ListFragment;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.ArrayAdapter;
import android.widget.ListView;
import android.widget.SimpleAdapter;
public class FoodListFragment extends ListFragment {
ArrayList<HashMap<String, String>> myList;
public void onAttach(Activity activity) {
super.onAttach(activity);
try {
createHashMap(activity);
} catch (Exception e){
System.out.println("Caught Exception: " + e);
}
}
public View onCreateView(LayoutInflater inflater, ViewGroup container,Bundle savedInstanceState) {
View rootView = inflater.inflate(R.layout.foodlistmenu, container, false);
ListView list = (ListView) rootView.findViewById(R.id.list);
SimpleAdapter pointsListAdapter = new SimpleAdapter(getActivity(), myList, R.layout.foodlistmenu, new String[] {"Item", "Qty/Weight", "Points"}, new int[] {R.id.flitem, R.id.flgrams, R.id.flpointsLayout});
try {
list.setAdapter(pointsListAdapter);
} catch (Exception e) {
System.out.println("Caught Exception Setting adapter to list. Exception is: " + e);
}
return rootView;
}
public void createHashMap(Activity c) throws IOException{
myList = new ArrayList<HashMap<String, String>>();
HashMap<String, String> map = new HashMap<String, String>();
InputStream is = c.getAssets().open("pointslist.bc");
BufferedReader in = new BufferedReader(new InputStreamReader(is));
String line = "";
while ((line = in.readLine()) != null) {
String parts[] = line.split("-");
map.put("Item", parts[0]);
map.put("Weight", parts[1]);
map.put("Points", parts[2]);
myList.add(map);
map = new HashMap<String, String>();
}
in.close();
}
}
当我运行应用程序(通过模拟器)时,我可以打开页面,它只会显示一个空白页面。但是从这里和那里放入System.out.println我可以看到ArrayList&gt;正在填充,并且正在成功创建List和SimpleAdapter,并且正在将适配器设置为列表而不会抛出任何错误。
我对Android开发人员来说相对较新,我不会像我想的那样得到代码,所以我可能犯了一些愚蠢的错误(希望不是!)。任何有关这方面的帮助都会非常感激,因为我已经被困在这几天了!
谢谢!