Back to project page SignUpViaGooglePlusOrFacebook.
The source code is released under:
Apache License
If you think the Android project SignUpViaGooglePlusOrFacebook listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
/* * Copyright (C) 2011 iMellon//from w w w . ja v a 2s .c o m * * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you 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.amitsid.signupwithgandfb.utils; import com.amitsid.signupwithgandfb.R; import com.google.api.services.plus.model.Activity; import java.util.List; import android.content.Context; import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; import android.widget.BaseAdapter; import android.widget.TextView; /** * @author Christos Papazafeiropoulos, Dimitris Makris * * The Android ListAdapter for the "Google+ Activities" of a specific user * */ public class ProfileActivitiesAdapter extends BaseAdapter { private LayoutInflater mInflater; private List<Activity> data; public ProfileActivitiesAdapter(Context context, List<Activity> activities) { mInflater = LayoutInflater.from(context); data = activities; } public ProfileActivitiesAdapter(Context context) { mInflater = LayoutInflater.from(context); } public void setData(List<Activity> mList) { data = mList; } public List<Activity> getData() { return data; } public void addData(List<Activity> mList) { data.addAll(mList); } public int getCount() { return data.size(); } public Object getItem(int position) { return position; } public View getView(int position, View convertView, ViewGroup parent) { ViewHolder holder; if (convertView == null) { convertView = mInflater.inflate( R.layout.activity_profile_activities_list_item, null); holder = new ViewHolder(); holder.title = (TextView) convertView .findViewById(R.id.profile_name); convertView.setTag(holder); } else { holder = (ViewHolder) convertView.getTag(); } holder.title.setText(data.get(position).getTitle()); return convertView; } class ViewHolder { TextView title; } @Override public long getItemId(int arg0) { return 0; } }