データベース (id, name) からデータを取得し、(name) を ListView に表示したいと考えています。ユーザーがクリックすると、アクションを実行するためにデータベース (id) を取得する必要があります。私はそれを機能させますが、私の解決策はそのような単純なことに対して複雑に思えます。どういうわけか (id) を ListView に非表示の方法で格納し、ユーザーがアイテムを選択したときにそれを取得できるようにしたいと考えています。これが私の解決策です:
class Route { //structure to store the data in ListView
public int id;
public String name;
public Route (int Id, String Name) {
id = Id;
name = Name;
}
}
// Create a custom adapter, we also created a corresponding
// layout (route_row) for each item of the ListView
public class MySimpleArrayAdapter extends ArrayAdapter<Route> {
private final Context context;
private final String[] values;
public MySimpleArrayAdapter(Context context, ArrayList<Route> routes) {
super(context, R.layout.route_row, routes);
this.context = context;
//Get the list of string array to display in the ListView
String[] values = new String[routes.size()];
//Loop around all the items to get the list of values to be displayed
for (int i=0; i<routes.size(); i++) values[i] =
routes.get(i).id + " - " + routes.get(i).name;
//We added route.id to route.name for debugging but route.id is not necessary
this.values = values; //String array used to display data in the ListView
}
@Override
public View getView(int position, View convertView, ViewGroup parent) {
LayoutInflater inflater = (LayoutInflater) context
.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
View rowView = inflater.inflate(R.layout.route_row, parent, false);
TextView textView = (TextView) rowView.findViewById(R.id.routeName);
textView.setText(values[position]);
return rowView;
}
}
//output is a JSON array composed of JSON object routes
void DisplayListView(String output) { (id, name)
ListView listView = (ListView) findViewById(R.id.listView1);
ArrayList<Route> list = new ArrayList<Route>();
//Convert the JSON to ArrayList<Route>
try {
JSONArray json = new JSONArray(output); //Get JSON array
JSONObject jsonObj;
int id;
String name;
for(int i=0;i<json.length();i++) {
jsonObj = json.getJSONObject(i); //Get each JSON object
id = jsonObj.getInt("Id");
name = jsonObj.getString("Name");
list.add( new Route(id, name));
}
}
catch (Exception ex) {
Log.w("Commute", ex.toString());
ex.printStackTrace();
}
//Create ArrayAdapter
MySimpleArrayAdapter adapter = new MySimpleArrayAdapter(getApplicationContext(),
list);
// Assign adapter to ListView
listView.setAdapter(adapter);
//Set a listener
listView.setOnItemClickListener(new OnItemClickListener() {
@Override
public void onItemClick(AdapterView<?> parent, View view,
int position, long id) {
Toast.makeText(getApplicationContext(),
"Click ListItem Number " +
((Route)parent.getItemAtPosition(position)).id,
Toast.LENGTH_LONG)
.show();
//It works when user clicks we display route.id
}
});
}
これを行う簡単な方法はありませんか?同様の質問を見つけましたが、単純で明確な答えはありませんでした。
カスタムアダプターを避けることはできますか? 各行のテキストを含む単純な ListView を表示したいだけです。
ArrayAdapter をループして adpater の String 配列を作成することを避けることはできますか? それは本当に非効率的な方法のようです。