/* =========================================================================== Copyright (c) 2012 Three Pillar Global Inc. http://threepillarglobal.com 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 Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sub-license, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. =========================================================================== */ package com.common.utils; import android.app.Activity; import android.content.Context; import android.os.Bundle; import android.util.Log; import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; import android.widget.ArrayAdapter; import android.widget.ImageView; import android.widget.ListView; import android.widget.TextView; import com.common.utils.social.ImageLoader; import org.brickred.socialauth.Contact; import java.util.ArrayList; import java.util.List; /** * Activity to show Contacts List Provider * * @author vineet.aggarwal@3pillarglobal.com */ // Please see strings.xml for list values public class ContactActivity extends Activity { // Variables private String provider_name; @SuppressWarnings("unchecked") @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.contact); List<Contact> contactList = (ArrayList<Contact>) getIntent().getSerializableExtra("contact"); provider_name = getIntent().getStringExtra("provider"); ListView list = (ListView) findViewById(R.id.contactList); list.setAdapter(new ContactAdapter(this, R.layout.contact_list, contactList)); } // adapter for contact list public class ContactAdapter extends ArrayAdapter<Contact> { private final LayoutInflater mInflater; final List<Contact> contacts; final ImageLoader imageLoader; public ContactAdapter(Context context, @SuppressWarnings("SameParameterValue") int textViewResourceId, List<Contact> contacts) { super(context, textViewResourceId); mInflater = LayoutInflater.from(context); this.contacts = contacts; imageLoader = new ImageLoader(context); } @Override public int getCount() { return contacts.size(); } @Override public View getView(int position, View convertView, ViewGroup parent) { final Contact bean = contacts.get(position); View row = mInflater.inflate(R.layout.contact_list, parent, false); TextView label = (TextView) row.findViewById(R.id.cName); TextView email = (TextView) row.findViewById(R.id.cEmail); ImageView cImage = (ImageView) row.findViewById(R.id.cImage); Log.d("Custom-UI", "Display Name = " + bean.getDisplayName()); Log.d("Custom-UI", "First Name = " + bean.getFirstName()); Log.d("Custom-UI", "Last Name = " + bean.getLastName()); Log.d("Custom-UI", "Contact ID = " + bean.getId()); Log.d("Custom-UI", "Profile URL = " + bean.getProfileUrl()); Log.d("Custom-UI", "Profile Image URL = " + bean.getProfileImageURL()); Log.d("Custom-UI", "Email = " + bean.getEmail()); imageLoader.DisplayImage(bean.getProfileImageURL(), cImage); if (provider_name.equalsIgnoreCase("twitter")) label.setText(bean.getFirstName() + "@" + bean.getDisplayName()); // twitter else if (provider_name.equalsIgnoreCase("yammer") || provider_name.equalsIgnoreCase("instagram") || provider_name.equalsIgnoreCase("flickr")) label.setText(bean.getDisplayName()); // yammer else label.setText(bean.getFirstName() + bean.getLastName()); // Show email for google , yammer , yahoo if (provider_name.equalsIgnoreCase("google") || provider_name.equalsIgnoreCase("yammer") || provider_name.equalsIgnoreCase("yahoo") || provider_name.equalsIgnoreCase("googleplus")) { email.setVisibility(View.VISIBLE); email.setText(bean.getEmail()); } return row; } } }