web-dev-qa-db-ja.com

ArrayAdapter <myClass>の使用方法

ArrayList<MyClass> myList = new ArrayList<MyClass>();

ListView listView = (ListView) findViewById(R.id.list);

ArrayAdapter<MyClass> adapter = new ArrayAdapter<MyClass>(this, R.layout.row,
    to, myList.);
listView.setAdapter(adapter);

クラス:MyClass

class MyClass {
    public String reason;
    public long long_val;
}

レイアウトでrow.xmlを作成しましたが、ArrayAdapterを使用してListViewでreasonとlong_valの両方を表示する方法がわかりません。

126
Sumit M Asok

クラスにカスタムアダプタを実装します。

public class MyClassAdapter extends ArrayAdapter<MyClass> {

    private static class ViewHolder {
        private TextView itemView;
    }

    public MyClassAdapter(Context context, int textViewResourceId, ArrayList<MyClass> items) {
        super(context, textViewResourceId, items);
    }

    public View getView(int position, View convertView, ViewGroup parent) {

        if (convertView == null) {
            convertView = LayoutInflater.from(this.getContext())
            .inflate(R.layout.listview_association, parent, false);

            viewHolder = new ViewHolder();
            viewHolder.itemView = (TextView) convertView.findViewById(R.id.ItemView);

            convertView.setTag(viewHolder);
        } else {
            viewHolder = (ViewHolder) convertView.getTag();
        }

        MyClass item = getItem(position);
        if (item!= null) {
            // My layout has only one TextView
                // do whatever you want with your string and long
            viewHolder.itemView.setText(String.format("%s %d", item.reason, item.long_val));
        }

        return convertView;
    }
}

Androidフレームワークにあまり慣れていない人のために、これについて詳しく説明します: https://github.com/codepath/Android_guides/wiki/Using-an-ArrayAdapter-with- ListView

153

http://developer.Android.com/reference/Android/widget/ArrayAdapter.html ごとに、MyClassにtoString()メソッドを追加できます。

TextViewは参照されますが、配列内の各オブジェクトのtoString()で満たされます。カスタムオブジェクトのリストまたは配列を追加できます。オブジェクトのtoString()メソッドをオーバーライドして、リスト内のアイテムに表示されるテキストを決定します。

class MyClass {

 @Override
 public String toString() {
  return "Hello, world.";
 }
}
76
user139444

これが最善のアプローチだと思います。汎用のArrayAdapterクラスを使用して独自のオブジェクトアダプターを拡張するには、次のように簡単です。

public abstract class GenericArrayAdapter<T> extends ArrayAdapter<T> {

  // Vars
  private LayoutInflater mInflater;

  public GenericArrayAdapter(Context context, ArrayList<T> objects) {
    super(context, 0, objects);
    init(context);
  }

  // Headers
  public abstract void drawText(TextView textView, T object);

  private void init(Context context) {
    this.mInflater = LayoutInflater.from(context);
  }

  @Override public View getView(int position, View convertView, ViewGroup parent) {
    final ViewHolder vh;
    if (convertView == null) {
      convertView = mInflater.inflate(Android.R.layout.simple_list_item_1, parent, false);
      vh = new ViewHolder(convertView);
      convertView.setTag(vh);
    } else {
      vh = (ViewHolder) convertView.getTag();
    }

    drawText(vh.textView, getItem(position));

    return convertView;
  }

  static class ViewHolder {

    TextView textView;

    private ViewHolder(View rootView) {
      textView = (TextView) rootView.findViewById(Android.R.id.text1);
    }
  }
}

そして、ここであなたのアダプタ(例):

public class SizeArrayAdapter extends GenericArrayAdapter<Size> {

  public SizeArrayAdapter(Context context, ArrayList<Size> objects) {
    super(context, objects);
  }

  @Override public void drawText(TextView textView, Size object) {
    textView.setText(object.getName());
  }

}

そして最後に、それを初期化する方法:

ArrayList<Size> sizes = getArguments().getParcelableArrayList(Constants.ARG_PRODUCT_SIZES);
SizeArrayAdapter sizeArrayAdapter = new SizeArrayAdapter(getActivity(), sizes);
listView.setAdapter(sizeArrayAdapter);

TextViewレイアウトの重力でカスタマイズ可能なArrayAdapterを使用してGistを作成しました。

https://Gist.github.com/m3n0R/88228

22
cesards

ArrayAdapterをサブクラス化し、メソッドgetView()をオーバーライドして、表示するコンテンツを含む独自のビューを返します。

6
Klarth

以下は、母クラスを拡張することに煩わされたくない場合にArrayAdapterを使用する方法の簡単で汚い例です。

class MyClass extends Activity {
    private ArrayAdapter<String> mAdapter = null;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        mAdapter = new ArrayAdapter<String>(getApplicationContext(),
            Android.R.layout.simple_dropdown_item_1line, Android.R.id.text1);

        final ListView list = (ListView) findViewById(R.id.list);
        list.setAdapter(mAdapter);

        //Add Some Items in your list:
        for (int i = 1; i <= 10; i++) {
            mAdapter.add("Item " + i);
        }

        // And if you want selection feedback:
        list.setOnItemClickListener(new OnItemClickListener() {
            @Override
            public void onItemClick(AdapterView<?> parent, View view, int position, long id) {
                //Do whatever you want with the selected item
                Log.d(TAG, mAdapter.getItem(position) + " has been selected!");
            }
        });
    }
}
5
Francois Dermu