/* * This file is part of Popcorn Time. * * Popcorn Time is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * Popcorn Time is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with Popcorn Time. If not, see <http://www.gnu.org/licenses/>. */ package pct.droid.adapters; import android.content.Context; import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; import android.widget.BaseAdapter; import android.widget.TextView; import com.google.gson.internal.LinkedTreeMap; import java.util.ArrayList; import butterknife.ButterKnife; import butterknife.Bind; public class PlayerAdapter extends BaseAdapter { private ArrayList<LinkedTreeMap<String, String>> mData; private LayoutInflater mInflater; class ViewHolder { public ViewHolder(View v) { ButterKnife.bind(this, v); } @Bind(android.R.id.text1) TextView text1; } public PlayerAdapter(Context context, ArrayList<LinkedTreeMap<String, String>> data) { mData = data; mInflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE); } @Override public int getCount() { return mData.size(); } @Override public String getItem(int position) { return mData.get(position).get("name"); } @Override public long getItemId(int position) { return position; } @Override public View getView(int position, View convertView, ViewGroup parent) { ViewHolder holder; if (convertView == null) { convertView = mInflater.inflate(android.R.layout.simple_list_item_1, parent, false); holder = new ViewHolder(convertView); holder.text1.setPadding(32, 0, 0, 0); convertView.setTag(holder); } else { holder = (ViewHolder) convertView.getTag(); } holder.text1.setText(getItem(position)); return convertView; } }