Back to project page TATupload.
The source code is released under:
GNU General Public License
If you think the Android project TATupload 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 uk.org.sucu.tatupload; /*from w w w .j a va 2 s .c om*/ import java.util.List; import android.content.Context; import android.view.View; import android.view.ViewGroup; import android.widget.ArrayAdapter; import android.widget.TextView; public class ParameterArrayAdapter extends ArrayAdapter<String> { public ParameterArrayAdapter(Context context, int resource, List<String> objects) { super(context, resource, objects); } public View getView(int position, View convertView, ViewGroup parent){ TextView tv = new TextView(getContext()); tv.setText(getItem(position)); return tv; } }