Back to project page reflect-app.
The source code is released under:
Apache License
If you think the Android project reflect-app listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.pontydysgu.gui; // ww w.j a v a2s .c om import android.content.Context; import android.widget.ArrayAdapter; import com.pontydysgu.data.QuestionStack; import com.pontydysgu.data.StackArray; public class StackArrayAdapter extends ArrayAdapter<QuestionStack> { private StackArray stackArray; public StackArrayAdapter(StackArray stackArray, Context context, int textViewResourceId) { super(context, textViewResourceId); this.stackArray = stackArray; } @Override public QuestionStack getItem(int position) { return this.stackArray.get(position); } @Override public int getCount() { return this.stackArray.size(); } }