Android Open Source - Tweety Timeline Adapter






From Project

Back to project page Tweety.

License

The source code is released under:

Apache License

If you think the Android project Tweety 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

/* ========================================================================
 * Copyright 2010, Handy Codeworks LLC// w w  w. j av  a 2s . co  m
 *
 * 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.handycodeworks.tweety;

import android.content.Context;
import android.database.Cursor;
import android.text.format.DateUtils;
import android.view.View;
import android.widget.SimpleCursorAdapter;
import android.widget.TextView;

public class TimelineAdapter extends SimpleCursorAdapter {

    private static final String[] from = { DatabaseOpenHelper.C_CREATED_AT,
      DatabaseOpenHelper.C_USER, DatabaseOpenHelper.C_TEXT };
    private static final int[] to = { R.id.rowTime, R.id.rowName,
      R.id.rowStatus };

    public TimelineAdapter(Context context, Cursor c) {
  super(context, R.layout.row, c, from, to);
    }

    /* 
     * This is where data is mapped to its view
     */
    @Override
    public void bindView(View row, Context context, Cursor c) {
  super.bindView(row, context, c);
  long createdTime = c.getLong(c.getColumnIndex(DatabaseOpenHelper.C_CREATED_AT));
  String user = c.getString(c.getColumnIndex(DatabaseOpenHelper.C_USER));
  String text = c.getString(c.getColumnIndex(DatabaseOpenHelper.C_TEXT));
  
  // Find view for each item
  TextView textCreatedTime = (TextView) row.findViewById(R.id.rowTime);
  TextView textUser = (TextView) row.findViewById(R.id.rowName);
  TextView textText = (TextView) row.findViewById(R.id.rowStatus);
  
  // Convert time
  String timeSince = DateUtils.getRelativeTimeSpanString(createdTime).toString();
  textCreatedTime.setText(timeSince);
  textUser.setText(user);
  textText.setText(text);
    }
    

}




Java Source Code List

com.handycodeworks.tweety.About.java
com.handycodeworks.tweety.BootReceiver.java
com.handycodeworks.tweety.DatabaseOpenHelper.java
com.handycodeworks.tweety.LocationHelper.java
com.handycodeworks.tweety.Prefs.java
com.handycodeworks.tweety.TimelineAdapter.java
com.handycodeworks.tweety.Timeline.java
com.handycodeworks.tweety.Tweety.java
com.handycodeworks.tweety.UpdateService.java
com.handycodeworks.tweety.WebViewActivity.java