Back to project page OXAndroidDemo.
The source code is released under:
Apache License
If you think the Android project OXAndroidDemo 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 org.bishoph.oxdemo.util; /*from w w w.ja va2 s . co m*/ import java.util.List; import android.content.Context; import android.widget.ArrayAdapter; public class CustomArrayAdapter extends ArrayAdapter<String> { public CustomArrayAdapter(Context context, int resource, List<String> objects) { super(context, resource, objects); } }