我有一个像这样的JSON:
[{"message":"Hello","id":1,"name":"Hello"},{"message":"James","id":2,"name":"Smith"}]
我用它来填充ArrayList<HashMap<String, String>>
以便将json的项目显示到ListView中。
这是我目前使用的代码:
private void createListView(){
for(int i = 0 ; i < json.length() ; i++){
try{
JSONObject temp = json.getJSONObject(i);
HashMap<String, String> map = new HashMap<>();
map.put("name", temp.getString("name"));
map.put("message", temp.getString("message"));
data.add(map);
}catch (JSONException e){
e.printStackTrace();
}
}
String[] from = new String[]{"name", "message"};
int to[] = new int[]{android.R.id.text1};
ListAdapter adapter = new SimpleAdapter(getBaseContext(), data, android.R.layout.simple_list_item_1, from, to);
setListAdapter(adapter);
Log.d("Debug", json.toString());
}
这段代码几乎可以工作,但不是我想要的。它仅显示名称字段。
如何修改它以显示消息和名称字段?
答案 0 :(得分:2)
仅显示消息字段。
因为android.R.layout.simple_list_item_1
用于仅包含android.R.id.text1
id
如何修改它以显示消息和名称 领域?
使用android.R.layout.simple_list_item_2
作为行的布局并更改to
数组:
int to[] = new int[]{android.R.id.text1,android.R.id.text2};
答案 1 :(得分:2)
更改此行
int to[] = new int[]{android.R.id.text1};
到
int to[] = new int[]{android.R.id.text1,android.R.id.text2};
希望这会对你有所帮助。
答案 2 :(得分:1)
此行中的错误
int to[] = new int[]{android.R.id.text1};
这里你只提到一个控件。我猜这是留言。您需要为Name
添加另一个控件。
答案 3 :(得分:1)
使用&#34; android.R.layout.simple_list_item_2&#34;而不是&#34; android.R.layout.simple_list_item_1&#34;
ListAdapter adapter = new SimpleCursorAdapter(
this,
android.R.layout.simple_list_item_2,
mCursor, // Pass in the cursor to bind to.
new String[] {People.NAME, People.COMPANY}, // Array of cursor columns to bind to.
new int[] {android.R.id.text1, android.R.id.text2}); // Parallel array of which template objects to bind to those columns.
// Bind to our new adapter.
setListAdapter(adapter);
答案 4 :(得分:1)
SimpleAdapter playlistadapter = new SimpleAdapter(getActivity().getApplicationContext(), songsList, R.layout.file_view,
new String[] { "songTitle","songAlbum", "songartist","songPath" }, new int[] { R.id.checkTextView, R.id.text2, R.id.text3, R.id.text4 });
playlistadapter.setViewBinder(new SimpleAdapter.ViewBinder(){
boolean setViewValue(View view, Object data, String textRepresentation){
if(view.getId () == R.id.songartist){
view.setText("("+textRepresentation+")");
}
}
});