Back to project page Jupiter-Broadcasting-Holo.
The source code is released under:
Copyright (c) 2011 Shane Quigley Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Soft...
If you think the Android project Jupiter-Broadcasting-Holo 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 jupiter.broadcasting.live.holo; /* ww w. ja v a2 s .c o m*/ import android.content.Context; import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; import android.widget.BaseAdapter; import android.widget.TextView; /* * Copyright (c) 2013 Adam Szabo * * This software is MIT licensed see link for details * http://www.opensource.org/licenses/MIT * * @author Adam Szabo * */ public class MySpinnerAdapter extends BaseAdapter { LayoutInflater inflator; String[][] sizeArr; public MySpinnerAdapter(Context applicationContext, String[][] sizearray) { inflator = LayoutInflater.from(applicationContext); sizeArr = sizearray; } @Override public int getCount() { return sizeArr.length; } @Override public Object getItem(int position) { return null; } @Override public long getItemId(int position) { return 0; } @Override public View getView(int position, View convertView, ViewGroup parent) { convertView = inflator.inflate(R.layout.myspinner_item, null); TextView ty = (TextView) convertView.findViewById(R.id.type); ty.setText(sizeArr[0][position]); TextView si = (TextView) convertView.findViewById(R.id.size); si.setText(sizeArr[1][position]); return convertView; } }