2

データベース (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 配列を作成することを避けることはできますか? それは本当に非効率的な方法のようです。

4

2 に答える 2

0

ビューのsetTag()メソッドを使用して、独自のオブジェクトをビューにアタッチします。次に、次のようなものを使用できます。

        vh.favourite.setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View view) {
            ForumThread th = (((ViewHolder) view.getTag()).thread);
            th.setWatched(!th.isWatched());
            th.saveLater();
            notifyDataSetChanged();
        }
    });
于 2013-02-08T03:57:22.307 に答える
0

答えは後で詳しく説明しますが、ここに答えの一部を示します。

  • ListActivity を作成することは、開始するためのより良い方法です (アイテム クリックのリスナーを登録します)。

  • カスタム配列アダプターでは、override:が呼び出されたpublic long getItemId (int position)ときに適切な ID を返すようにします。onListItemClick

  • SimpleCursorAdapter を使用すると、データベース ID が によって自動的に識別されるようonListItemClickです。これは、SimpleCursorAdapter のバインドを行うときに id を提供したためである可能性があります。
    new String[] { "Name", "IsOffer", "Distance", BaseColumns._ID }, //Columns from table BaseColumns._ID new int[] { R.id.name, R.id.isOffer, R.id.distance, R.id.id },

于 2013-02-22T06:13:37.540 に答える