/*
* Copyright 2014 Google Inc. All rights reserved.
*
* 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 com.google.samples.apps.abelana;
import android.content.Context;
import android.util.Log;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.BaseAdapter;
import android.widget.TextView;
import com.squareup.picasso.Picasso;
import java.util.ArrayList;
import java.util.List;
/**
* Adapter to display a list of the other people the user is following. See FeedAdapter for a full
* explanation of how these adapters work.
*/
public class FriendsAdapter extends BaseAdapter {
private Context mContext;
private List<String> mFollowing = new ArrayList<String>();
private LayoutInflater mInflater;
private List<String> mFollowingIds = new ArrayList<String>();
private final String LOG_TAG = FriendsAdapter.class.getSimpleName();
public FriendsAdapter(Context context) {
mContext = context;
mFollowing = Data.mFollowingNames;
mFollowingIds = Data.mFollowingIds;
}
@Override
public int getCount() {
return mFollowing.size();
}
@Override
public String getItem(int position) {
return mFollowing.get(position);
}
@Override
public long getItemId(int position) {
return position;
}
@Override
public View getView(int position, View convertView, ViewGroup parent) {
if (mInflater == null) {
mInflater = (LayoutInflater) mContext.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
}
//set the view to the list item layout
if (convertView == null) {
convertView = mInflater.inflate(R.layout.list_item_friends, null);
}
TextView textView = (TextView) convertView.findViewById(R.id.textview_friend);
//add the name
String name = getItem(position);
textView.setText(name);
//add the image
String personId = mFollowingIds.get(position);
String photoUrl = AbelanaThings.getImage(personId + "_a");
Log.v(LOG_TAG, "Friend's photo URL is " + photoUrl);
BezelImageView imageView = (BezelImageView) convertView.findViewById(R.id.friend_image);
Picasso.with(mContext).load(photoUrl).into(imageView);
return convertView;
}
}