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 it.unipr.ce.dsg.gamidroid.activities.BuildingLookupActivity.java

/**
 * <p>
 * This class represents an Activity that allows the search for building
 * notifications in the network.
 * </p>
 * 

From source file com.owncloud.android.extensions.ExtensionsListActivity.java

public class ExtensionsListActivity extends ListActivity {

    private static final String packages_url = "http://alefzero.eu/a/packages.php";

    private Thread mGetterThread;
    private final Handler mHandler = new Handler();

From source file com.loadsensing.app.SensorsActivity.java

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

    private static final String DEB_TAG = "LoadSensingApp_LOG";
    private String SERVER_HOST = "http://viuterrassa/Android/getLlistaSensors.php";
    ArrayList<HashMap<String, String>> list = new ArrayList<HashMap<String, String>>();

From source file se.team05.activity.ListExistingRoutesActivity.java

/**
 * An activity that will present the user with the option to choose and old
 * route. Gets routes from database and presents them in a listview.
 * 
 * @author Markus, Henrik Hugo
 * 

From source file net.reichholf.dreamdroid.activities.DreamDroidShareActivity.java

/**
 * @author sre
 * 
 */
public class DreamDroidShareActivity extends ListActivity {
    public static String LOG_TAG = DreamDroidShareActivity.class.getSimpleName();

From source file ru.orangesoftware.financisto2.activity.CurrencyListActivity.java

@EActivity(R.layout.currency_list)
@OptionsMenu(R.menu.currency_list_menu)
public class CurrencyListActivity extends ListActivity {

    private static final int NEW_CURRENCY_REQUEST = 1;
    private static final int EDIT_CURRENCY_REQUEST = 2;

From source file net.reichholf.dreamdroid.activities.ShareActivity.java

/**
 * @author sre
 * 
 */
public class ShareActivity extends ListActivity {
    public static String LOG_TAG = ShareActivity.class.getSimpleName();

From source file uk.bcu.ItuneActivity.java

/**
 *
 * @author Yacub
 */
public class ItuneActivity extends ListActivity {

From source file com.privacity.ListaPerfilActivity.java

public class ListaPerfilActivity extends ListActivity {

    ArrayList<HashMap<String, String>> Eventos;
    String[] from = new String[] { "username", "codigo" };
    int[] to = new int[] { R.id.nombreAutor, R.id.codigo };
    private ConexionSiabra com;

From source file se.team05.activity.ListExistingResultsActivity.java

/**
 * An activity that will present the user with the option to view results of an old route.
 * Gets results from database and presents them in a listview.
 * 
 * @author Gustaf Werlinder, Henrik Hugo, Daniel Kvist, Markus Schutser
 *