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.BreakingBytes.SifterReader.SifterReader.java

public class SifterReader extends ListActivity {

    // Menu options and activity request codes
    public static final int LOGIN_ID = Menu.FIRST; // enter login keys
    public static final int DELETE_ID = Menu.FIRST + 1; // delete login keys
    public static final int ACTIVITY_LOGIN = 0;

From source file com.qbcps.sifterclient.SifterReader.java

public class SifterReader extends ListActivity {

    // Menu options and activity request codes
    public static final int LOGIN_ID = Menu.FIRST; // enter login keys
    public static final int DELETE_ID = Menu.FIRST + 1; // delete login keys
    public static final int ACTIVITY_LOGIN = 0;

From source file com.romanenco.gitt.BrowserActivity.java

/**
 * Browse repo checked out to local file system.
 * 
 * Use the same activity instance to browse source tree.
 * Open code viewer on file touch.
 * 

From source file com.codebutler.farebot.activities.MainActivity.java

public class MainActivity extends ListActivity implements LoaderManager.LoaderCallbacks<Cursor> {
    private static final int SELECT_FILE = 1;

    private static final String SD_EXPORT_PATH = Environment.getExternalStorageDirectory() + "/FareBot-Export.xml";
    private NfcAdapter mNfcAdapter;
    private PendingIntent mPendingIntent;

From source file net.reichholf.dreamdroid.abstivities.AbstractHttpListActivity.java

/**
 * @author sreichholf
 * 
 */
public abstract class AbstractHttpListActivity extends ListActivity {
    // public static ArrayList<ExtendedHashMap> DATA = new

From source file com.actionbarsherlock.app.SherlockListActivity.java

public abstract class SherlockListActivity extends ListActivity
        implements OnCreatePanelMenuListener, OnPreparePanelListener, OnMenuItemSelectedListener,
        OnActionModeStartedListener, OnActionModeFinishedListener {
    private ActionBarSherlock mSherlock;

    protected final ActionBarSherlock getSherlock() {

From source file it.sasabz.android.sasabus.InfoActivity.java

public class InfoActivity extends ListActivity {

    private Vector<DBObject> list = null;
    private ProgressDialog progdial = null;

    public InfoActivity() {

From source file com.example.savedollars.ProductTotalPriceDisplay.java

public class ProductTotalPriceDisplay extends ListActivity {

    private List<Float> sortedList = new ArrayList<Float>();
    private Map merchantMap = new HashMap();
    private Map<Object, Object> sortedMap = new LinkedHashMap<Object, Object>();

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

public class ChooseAccount extends ListActivity
        implements CompoundButton.OnCheckedChangeListener, View.OnClickListener {
    /**
     * Handler for when you check or uncheck an account, which fires off a
     * request to the server.
     * 

From source file com.melchor629.musicote.MainActivity.java

/**
 * Actividad principal de la App, hace muchas cosas<br><i>tag:^(?!.*(EGL_emulation|dalvik)).*$</i>
 * @author melchor
 */
public class MainActivity extends ListActivity implements SearchView.OnQueryTextListener,
        SwipeRefreshLayout.OnRefreshListener, DatabaseLoader.DatabaseLoaderListener {