Example usage for android.app ListActivity subclass-usage

List of usage examples for android.app ListActivity subclass-usage

Introduction

In this page you can find the example usage for android.app ListActivity subclass-usage.

Usage

From source file net.noviden.android.shoutout.MainScreen.java

public class MainScreen extends ListActivity {

    private String mJsonPostsArray;
    private String[] mStringPostsArray;
    private int mInterval = 10000;
    private Handler mHandler;

From source file com.cloudant.todo.TodoActivity.java

public class TodoActivity extends ListActivity implements OnSharedPreferenceChangeListener {

    static final String LOG_TAG = "TodoActivity";

    private static final int DIALOG_NEW_TASK = 1;
    private static final int DIALOG_PROGRESS = 2;

From source file org.uribeacon.sample.UriBeaconScanActivity.java

/**
 * Activity for scanning and displaying available Bluetooth LE devices.
 */
public class UriBeaconScanActivity extends ListActivity implements SwipeRefreshLayout.OnRefreshListener {

    private static final String TAG = "UriBeaconScan";

From source file com.arantius.tivocommander.Search.java

public class Search extends ListActivity {
    private class SearchAdapter extends ArrayAdapter<JsonNode> {
        // TODO: Make this class DRY vs. Suggestions.ShowAdapter
        private final Drawable mDrawable;

        private final ArrayList<JsonNode> mItems;

From source file com.arantius.tivocommander.Person.java

public class Person extends ListActivity {
    // TODO: Refactor this to be DRY w/ Credits.
    private class CreditsAdapter extends ArrayAdapter<JsonNode> {
        private final JsonNode[] mCredits;
        private final Drawable mDrawable;
        private final int mResource;

From source file org.webinos.app.wrt.ui.WidgetListActivity.java

public class WidgetListActivity extends ListActivity
        implements WidgetManagerService.LaunchListener, WidgetManagerImpl.EventListener {
    private static final String TAG = "ListActivity";
    private static final String STORES_FILE = "config/stores.json";
    static final String ACTION_START = "org.webinos.wrt.START";
    static final String ACTION_STOP = "org.webinos.wrt.STOP";

From source file com.notifry.android.SourceList.java

public class SourceList extends ListActivity
        implements View.OnClickListener, CompoundButton.OnCheckedChangeListener {
    /**
     * Handler for when you change a source's enabled status.
     * 
     * @param source

From source file com.HumanDecisionSupportSystemsLaboratory.DD_P2P.Motion.java

public class Motion extends ListActivity {
    public final static String M_MOTION_ID = "motion_ID";
    public final static String M_MOTION_LID = "Motion_LID";
    public final static String M_MOTION_GIDH = "motion_GIDH";
    public final static String M_MOTION_TITLE = "motion_title";
    public final static String M_MOTION_BODY = "motion_body";

From source file net.dahanne.spring.android.ch3.restful.example.recipeapp.RecipesList.java

public class RecipesList extends ListActivity {

    // For logging and debugging
    private static final String TAG = "RecipesList";

    private static final int ACTION_EDIT = 10;

From source file com.arantius.tivocommander.Upcoming.java

public class Upcoming extends ListActivity implements OnItemClickListener, OnItemLongClickListener {
    private class DateInPast extends Throwable {
        private static final long serialVersionUID = -4184008452910054505L;
    }

    protected SimpleAdapter mListAdapter;