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 com.savedollars.ProductPriceDisplay.java

/*******************************************************************************************************
** ProductPriceDisplay is used to parse the JSON Data which is retrieved calling the google shopping API
** to sort and display the price of the product for different merchants and it allows the user to visit 
** the home page of the merchant by one click.
*********************************************************************************************************/

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

public class WidgetListActivity extends ListActivity
        implements WidgetManagerService.WidgetManagerLaunchListener, WidgetManagerImpl.EventListener {

    private static final String TAG = "WidgetListActivity";
    private static final String STORES_FILE = "config/stores.json";
    private static final String ACTION_PROGRESS = "org.webinos.android.app.wrt.ui.PROGRESS";

From source file de.hero.vertretungsplan.MainActivity.java

public class MainActivity extends ListActivity {

    private View mRefreshIndeterminateProgressView; // save inflated layout for
    // reference
    private MenuItem refreshItem; // reference to actionbar menu item we want to
    // swap

From source file com.microsoft.live.sample.hotmail.ContactsActivity.java

public class ContactsActivity extends ListActivity {
    private class CreateContactDialog extends Dialog {
        public CreateContactDialog(Context context) {
            super(context);
            setContentView(R.layout.create_contact);

From source file com.google.zxing.client.android.history.HistoryActivity.java

public final class HistoryActivity extends ListActivity implements ScreenResolution {

    private static final String TAG = HistoryActivity.class.getSimpleName();

    private HistoryManager historyManager;
    private ArrayAdapter<HistoryItem> adapter;

From source file com.piusvelte.sonet.core.SelectFriends.java

public class SelectFriends extends ListActivity {
    private static final String TAG = "SelectFriends";
    private HttpClient mHttpClient;
    private List<HashMap<String, String>> mFriends = new ArrayList<HashMap<String, String>>();
    private List<String> mSelectedFriends = new ArrayList<String>();
    private long mAccountId = Sonet.INVALID_ACCOUNT_ID;

From source file com.development.androrb.Orband.java

public class Orband extends ListActivity {
    /** Called when the activity is first created. */

    private static final String TAG = "Orband";

    String html;

From source file nl.terr.tabweave.TabWeave.java

public class TabWeave extends ListActivity {

    //    private TabWeaveDbAdapter mWeaveTabsDbAdapter;
    //  private CryptoWeave mCryptoWeave;
    private UserWeaveImpl mUserWeave;
    private SyncWeaveImpl mSyncWeave;

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

public abstract class ShowList extends ListActivity
        implements OnItemLongClickListener, DialogInterface.OnClickListener {
    protected class ShowsAdapter extends ArrayAdapter<JsonNode> {
        protected Context mContext;

        public ShowsAdapter(Context context) {

From source file se.droidgiro.scanner.CaptureActivity.java

/**
 * The main activity. Draws the views and shows the results in them.
 */
public final class CaptureActivity extends ListActivity implements SurfaceHolder.Callback {

    private static final String TAG = "DroidGiro.CaptureActivity";