List of usage examples for android.app ListActivity subclass-usage
From source file com.savedollars.ProductTotalPriceDisplay.java
/*******************************************************************************************************
** ProductTotalPriceDisplay is used to invoke the google shopping API and parse
* the JSON Data to sort and display the (price+Shipping price) of the product
* in ascending order(lower to higher price) for different merchants and it
* allows the user to visit the home page of the merchant by one click.
*********************************************************************************************************/
From source file de.hshannover.f4.trust.ironcontrol.view.list_activities.ListHierarchyActivity.java
public abstract class ListHierarchyActivity extends ListActivity implements LoaderManager.LoaderCallbacks<Cursor> { protected static final String[] FROM_REQUESTS = { Requests.COLUMN_NAME, Requests.COLUMN_IDENTIFIER1, Requests.COLUMN_IDENTIFIER1_Value, Requests.COLUMN_MAX_DEPTH }; protected static final String[] FROM_RESPONSES = { Responses.COLUMN_DATE, Responses.COLUMN_TIME, Responses.COLUMN_NEW };
From source file com.devpaul.filepickerlibrary.FilePickerActivity.java
/** * Created by Paul Tsouchlos * Contains all the logic for selecting files or directories. */ public class FilePickerActivity extends ListActivity implements NameFileDialogInterface {
From source file cm.aptoide.pt.ManageRepo.java
public class ManageRepo extends ListActivity { private DbHandler db = null; private final int ADD_REPO = 1; private final int REM_REPO = 2;
From source file edu.cens.loci.ui.PlaceListActivity.java
public class PlaceListActivity extends ListActivity { private static final String TAG = "PlaceListActivity"; private static final int SUBACTIVITY_NEW_PLACE = 1; private static final int SUBACTIVITY_VIEW_PLACE = 2;
From source file se.anyro.tagtider.TransferActivity.java
@SuppressWarnings("deprecation") public class TransferActivity extends ListActivity { private static final int FIVE_MINUTES = 300000; private static long sLastUpdate = 0;
From source file nz.co.wholemeal.christchurchmetro.PlatformActivity.java
public class PlatformActivity extends ListActivity { private Stop current_stop; private ArrayList arrivals = new ArrayList<Arrival>(); private ArrivalAdapter arrival_adapter; private View stopHeader;
From source file org.mixare.MixListView.java
/** * This class holds vectors with informaction about sources, their description * and whether they have been selected. */ public class MixListView extends ListActivity {
From source file de.hshannover.f4.trust.ironcontrol.view.list_activities.ListSavedPublishsActivity.java
public class ListSavedPublishsActivity extends ListActivity implements LoaderManager.LoaderCallbacks<Cursor>, MultichoiceListEvent { private static final Logger logger = LoggerFactory.getLogger(ListVendorMetadataActivity.class); private static final int REMOVE_ID = Menu.FIRST + 1;
From source file com.radicaldynamic.groupinform.activities.AccountFolderList.java
public class AccountFolderList extends ListActivity implements SynchronizeFoldersListener { private static final String t = "AccountFolderList: "; private static final int MENU_ADD = Menu.FIRST; private static final int MENU_SYNC_LIST = Menu.FIRST + 1;