Java tutorial
/* * Copyright (C) 2011-2012 Dominik Schrmann <dominik@dominikschuermann.de> * * This file is part of AdAway. * * AdAway is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * AdAway is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with AdAway. If not, see <http://www.gnu.org/licenses/>. * */ package org.adawaycn.util; import org.adawaycn.R; import org.adawaycn.provider.AdAwayContract.HostsSources; import org.adawaycn.util.*; import org.adawaycn.util.DateUtils; import android.content.Context; import android.database.Cursor; import android.support.v4.widget.SimpleCursorAdapter; import android.view.View; import android.widget.CheckBox; import android.widget.TextView; public class HostsSourcesCursorAdapter extends SimpleCursorAdapter { public HostsSourcesCursorAdapter(Context context, int layout, Cursor c, String[] from, int[] to, int flags) { super(context, layout, c, from, to, flags); } /** * Bind cursor to view using the checkboxes */ @Override public void bindView(View v, Context context, Cursor cursor) { CheckBox cBox = (CheckBox) v.findViewById(R.id.checkbox_list_two_checkbox); TextView hostnameTextView = (TextView) v.findViewById(R.id.checkbox_list_two_text); TextView lastModifiedTextView = (TextView) v.findViewById(R.id.checkbox_list_two_subtext); if (cBox != null) { // bind cursor position to tag of list item int cursorPosition = cursor.getPosition(); cBox.setTag("checkbox_" + cursorPosition); hostnameTextView.setTag("url_" + cursorPosition); lastModifiedTextView.setTag("last_modified_" + cursorPosition); int enabledCol = cursor.getColumnIndexOrThrow(HostsSources.ENABLED); String enabled = cursor.getString(enabledCol); if (Integer.parseInt(enabled) == 1) { cBox.setChecked(true); } else { cBox.setChecked(false); } // set hostname int urlCol = cursor.getColumnIndex(HostsSources.URL); String url = cursor.getString(urlCol); hostnameTextView.setText(url); // set last modified int lastModifiedLocalCol = cursor.getColumnIndexOrThrow(HostsSources.LAST_MODIFIED_LOCAL); long lastModifiedLocal = cursor.getLong(lastModifiedLocalCol); int lastModifiedOnlineCol = cursor.getColumnIndexOrThrow(HostsSources.LAST_MODIFIED_ONLINE); long lastModifiedOnline = cursor.getLong(lastModifiedOnlineCol); lastModifiedTextView.setText(context.getString(R.string.hosts_last_modified_local) + " " + org.adawaycn.util.DateUtils.longToDateString(context, lastModifiedLocal) + ", " + context.getString(R.string.hosts_last_modified_online) + " " + DateUtils.longToDateString(context, lastModifiedOnline)); } } }