res/raw/file.txt の下にある txt ファイルからデータを読み取り、各行を ListView に表示する必要があります。しかし、アプリが起動すると、ListView は空です。これは onCreate の前に定義されます。
private SimpleAdapter sa;
ArrayList<HashMap<String,String>> list = new ArrayList<HashMap<String,String>>();
これはコードです:
InputStream inputStream = getResources().openRawResource(R.raw.definitions);
BufferedReader reader = new BufferedReader(new InputStreamReader(inputStream));
String line;
try
{
HashMap<String, String> item;
while ((line = reader.readLine()) != null)
{
String[] strings = TextUtils.split(line, "-");
if (strings.length < 2)
{
item = new HashMap<String, String>();
item.put("line1", strings[0].trim());
item.put("line2", strings[1].trim());
list.add(item);
}
}
mTextView.setText("");
sa = new SimpleAdapter(this, list,
R.layout.result,
new String[] { "line1","line2" },
new int[] {R.id.word, R.id.definition});
mListView.setAdapter(sa);
reader.close();
}
catch(Exception e)
{
Toast.makeText(this, "Error", Toast.LENGTH_SHORT).show();
}