/* * Copyright 2015 sourcestream GmbH * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package de.sourcestream.movieDB.adapter; import de.sourcestream.movieDB.helper.CircleBitmapDisplayer; import de.sourcestream.movieDB.model.CastModel; import de.sourcestream.movieDB.R; import android.content.Context; import android.graphics.Bitmap; import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; import android.widget.ArrayAdapter; import android.widget.ImageView; import android.widget.TextView; import com.nostra13.universalimageloader.core.DisplayImageOptions; import com.nostra13.universalimageloader.core.ImageLoader; import com.nostra13.universalimageloader.core.assist.ImageScaleType; import java.util.ArrayList; /** * Cast adapter. Used to load cast information in the cast list. */ public class CastAdapter extends ArrayAdapter<CastModel> { private ArrayList<CastModel> castList; private LayoutInflater vi; private int Resource; private ViewHolder holder; private ImageLoader imageLoader; private DisplayImageOptions options; public CastAdapter(Context context, int resource, ArrayList<CastModel> objects) { super(context, resource, objects); vi = (LayoutInflater) context .getSystemService(Context.LAYOUT_INFLATER_SERVICE); Resource = resource; castList = objects; imageLoader = ImageLoader.getInstance(); options = new DisplayImageOptions.Builder() // Bitmaps in RGB_565 consume 2 times less memory than in ARGB_8888. .bitmapConfig(Bitmap.Config.RGB_565) .imageScaleType(ImageScaleType.EXACTLY) .cacheInMemory(false) .displayer(new CircleBitmapDisplayer()) .showImageOnLoading(R.drawable.placeholder_cast) .showImageForEmptyUri(R.drawable.placeholder_cast) .showImageOnFail(R.drawable.placeholder_cast) .cacheOnDisk(true) .build(); } /** * Get a View that displays the data at the specified position in the data set. * @param position The position of the item within the adapter's data set of the item whose view we want. * @param convertView The old view to reuse, if possible. Note: You should check that this view is non-null and of an appropriate type before using. * @param parent The parent that this view will eventually be attached to. * @return A View corresponding to the data at the specified position. */ @Override public View getView(int position, View convertView, ViewGroup parent) { // convert view = design View v = convertView; if (v == null) { holder = new ViewHolder(); v = vi.inflate(Resource, null); holder.name = (TextView) v.findViewById(R.id.name); holder.character = (TextView) v.findViewById(R.id.character); holder.profilePath = (ImageView) v.findViewById(R.id.profilePath); v.setTag(holder); } else { holder = (ViewHolder) v.getTag(); } holder.name.setText(castList.get(position).getName()); if (castList.get(position).getCharacter() != null) { holder.character.setText(castList.get(position).getCharacter()); holder.character.setVisibility(View.VISIBLE); } else holder.character.setVisibility(View.GONE); imageLoader.displayImage(castList.get(position).getProfilePath(), holder.profilePath, options); return v; } /** * Defines cast list row elements. */ static class ViewHolder { public TextView name; public TextView character; public ImageView profilePath; } }