Android Open Source - acs-android-sdk Checkin Adapter






From Project

Back to project page acs-android-sdk.

License

The source code is released under:

Apache License

If you think the Android project acs-android-sdk listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

Java Source Code

package com.appcelerator.cloud.demo;
//from   w w  w  . j  a v  a 2  s . c om
import java.util.List;

import org.json.JSONException;
import org.json.JSONObject;

import android.content.Context;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.BaseAdapter;
import android.widget.TextView;

// Adapter to show a list of checkins
public class CheckinAdapter extends BaseAdapter {
    private Context context;
    private boolean isPlaceView;
    private List<JSONObject> listCheckin;

    public CheckinAdapter(Context context, List<JSONObject> listCheckin, boolean isPlaceView) {
        this.context = context;
        this.listCheckin = listCheckin;
        this.isPlaceView = isPlaceView;
    }

    public int getCount() {
        return listCheckin.size();
    }

    public Object getItem(int position) {
        return listCheckin.get(position);
    }

    public long getItemId(int position) {
        return position;
    }

    public View getView(int position, View convertView, ViewGroup viewGroup) {
      JSONObject entry = listCheckin.get(position);
        if (convertView == null) {
            LayoutInflater inflater = (LayoutInflater) context
                    .getSystemService(Context.LAYOUT_INFLATER_SERVICE);
            convertView = inflater.inflate(R.layout.checkin_row, null);
        }
        TextView checkinInfo = (TextView) convertView.findViewById(R.id.checkinInfo);
        if (isPlaceView) {
      try {
        JSONObject userJSON = entry.getJSONObject("user");
        checkinInfo.setText( userJSON.getString("first_name") + " checked in");
      } catch (JSONException e) {
        e.printStackTrace();
      }
        } else {
          try {
        JSONObject placeJSON = entry.getJSONObject("place");
        checkinInfo.setText("Checked in at " + placeJSON.getString("name") );
      } catch (JSONException e) {
        e.printStackTrace();
      }
        }

        TextView checkinDate = (TextView) convertView.findViewById(R.id.checkinDate);
        try {
      checkinDate.setText(entry.getString("created_at"));
    } catch (JSONException e) {
      e.printStackTrace();
    }

        return convertView;
    }


}




Java Source Code List

com.appcelerator.cloud.demo.BaloonLayout.java
com.appcelerator.cloud.demo.CheckinAdapter.java
com.appcelerator.cloud.demo.DemoApplication.java
com.appcelerator.cloud.demo.DemoSession.java
com.appcelerator.cloud.demo.Explore.java
com.appcelerator.cloud.demo.MyDlgCustomizer.java
com.appcelerator.cloud.demo.PlaceAdapter.java
com.appcelerator.cloud.demo.PlaceView.java
com.appcelerator.cloud.demo.SignUp.java
com.appcelerator.cloud.demo.TabView.java
com.appcelerator.cloud.demo.UserView.java
com.appcelerator.cloud.pushdemo.ArrivalActivity.java
com.appcelerator.cloud.pushdemo.CustomReceiver.java
com.appcelerator.cloud.pushdemo.ExtendedReceiver.java
com.appcelerator.cloud.pushdemo.GCMUtility.java
com.appcelerator.cloud.pushdemo.PushActivity.java
com.appcelerator.cloud.pushdemo.PushNotificationsManager.java
com.appcelerator.cloud.sdk.ACSClientError.java
com.appcelerator.cloud.sdk.ACSClient.java
com.appcelerator.cloud.sdk.CCConstants.java
com.appcelerator.cloud.sdk.CCMeta.java
com.appcelerator.cloud.sdk.CCMultipartEntity.java
com.appcelerator.cloud.sdk.CCObject.java
com.appcelerator.cloud.sdk.CCPagination.java
com.appcelerator.cloud.sdk.CCRequestMethod.java
com.appcelerator.cloud.sdk.CCResponse.java
com.appcelerator.cloud.sdk.CCUser.java
com.appcelerator.cloud.sdk.SerializableCookie.java
com.appcelerator.cloud.sdk.oauth2.ACSClientDialog.java
com.appcelerator.cloud.sdk.oauth2.DialogError.java
com.appcelerator.cloud.sdk.oauth2.DialogListener.java
com.appcelerator.cloud.sdk.oauth2.DlgCustomizer.java
com.appcelerator.cloud.sdk.oauth2.Util.java
com.appcelerator.com.cloud.demotest.TestDriver.java