Skip to content

Instantly share code, notes, and snippets.

@the-dagger
Last active July 29, 2016 20:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save the-dagger/4bb044077868dad2b37187694d5d4bf0 to your computer and use it in GitHub Desktop.
Save the-dagger/4bb044077868dad2b37187694d5d4bf0 to your computer and use it in GitHub Desktop.
import android.content.Context;
import android.content.Intent;
import android.database.Cursor;
import android.os.Binder;
import android.widget.RemoteViews;
import android.widget.RemoteViewsService;
/**
* Created by the-dagger on 24/7/16.
*/
public class WidgetDataProvider implements RemoteViewsService.RemoteViewsFactory {
private Context context;
private Cursor cursor;
private Intent intent;
//For obtaining the activity's context and intent
public WidgetDataProvider(Context context, Intent intent) {
this.context = context;
this.intent = intent;
}
private void initCursor(){
if (cursor != null) {
cursor.close();
}
final long identityToken = Binder.clearCallingIdentity();
/**This is done because the widget runs as a separate thread
when compared to the current app and hence the app's data won't be accessible to it
because I'm using a content provided **/
cursor = context.getContentResolver().query(QuoteProvider.Quotes.CONTENT_URI,
new String[]{QuoteColumns._ID, QuoteColumns.SYMBOL, QuoteColumns.BIDPRICE,
QuoteColumns.PERCENT_CHANGE, QuoteColumns.CHANGE, QuoteColumns.ISUP},
QuoteColumns.ISCURRENT + " = ?",
new String[]{"1"},null);
Binder.restoreCallingIdentity(identityToken);
}
@Override
public void onCreate() {
initCursor();
if (cursor != null) {
cursor.moveToFirst();
}
}
@Override
public void onDataSetChanged() {
/** Listen for data changes and initialize the cursor again **/
initCursor();
}
@Override
public void onDestroy() {
cursor.close();
}
@Override
public int getCount() {
return cursor.getCount();
}
@Override
public RemoteViews getViewAt(int i) {
/** Populate your widget's single list item **/
RemoteViews remoteViews = new RemoteViews(context.getPackageName(), R.layout.list_item_quote);
cursor.moveToPosition(i);
remoteViews.setTextViewText(R.id.stock_symbol,cursor.getString(cursor.getColumnIndex(QuoteColumns.SYMBOL)));
remoteViews.setTextViewText(R.id.bid_price,cursor.getString(cursor.getColumnIndex(QuoteColumns.BIDPRICE)));
remoteViews.setTextViewText(R.id.change,cursor.getString(cursor.getColumnIndex(QuoteColumns.CHANGE)));
if (cursor.getString(cursor.getColumnIndex(QuoteColumns.ISUP)).equals("1")) {
remoteViews.setInt(R.id.change, "setBackgroundResource", R.drawable.percent_change_pill_green);
} else {
remoteViews.setInt(R.id.change, "setBackgroundResource", R.drawable.percent_change_pill_red);
}
return remoteViews;
}
@Override
public RemoteViews getLoadingView() {
return null;
}
@Override
public int getViewTypeCount() {
return 1;
}
@Override
public long getItemId(int i) {
return i;
}
@Override
public boolean hasStableIds() {
return true;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment