1

我正在尝试构建一个笔记应用程序。我的问题是在主页的列表中显示文本文件(.txt)。该列表应显示注释的标题和内容。但我不知道如何编写自定义适配器。

文件保存如下:

final EditText title = (EditText) findViewById(R.id.title);
final EditText note = (EditText) findViewById(R.id.note);

String head = title.getText().toString();
String body = note.getText().toString();
String fullnote = body + "\n" + head;

try {
FileOutputStream fo = openFileOutput(head + ".txt", Context.MODE_APPEND);
fo.write(fullnote.getBytes());
fo.write("\n".getBytes());
fo.write("\n".getBytes());
}
catch (FileNotFoundException e) {
// TODO Auto-generated catch block
    e.printStackTrace();
}
catch (IOException e) {
    // TODO Auto-generated catch block
e.printStackTrace();
}

现在我想在列表视图中加载这些文件:

String[] listItems = {"Item 1", "Item 2", "etc.",};
ListView lv = (ListView) findViewById(R.id.mainpage_list);
lv.setAdapter(new ArrayAdapter<String>
(this, android.R.layout.simple_list_item_1, listItems));

“第 1 项”、“第 2 项”和“等” 只是占位符。

我希望文件名是项目,文件的内容是子项目。我以前从未使用过 ListViews 和 Adapters,所以我有点无能为力。提前致谢。

4

1 回答 1

1

如果你想要甜美的简单,我建议:

  • 使每个注释成为一个单独的文件。
  • 将文件名设置为注释的标题(一定要清除它,这样人们就不会在其中放置诸如“..”之类的东西来操纵路径)。

这将非常容易实施和处理。如果您需要做更多花哨的事情(例如,跟踪历史),那么您需要重新审视结构。但是根据您的要求,我会选择上述内容。

于 2013-10-12T19:22:27.607 回答