List of usage examples for android.app ListActivity subclass-usage
From source file se.anyro.tagtider.MainActivity.java
public class MainActivity extends ListActivity { private static final String LAST_VERSION_CODE = "last_version_code"; private AutoCompleteTextView mStationView; private Station[] mStations; private List<String> mStationNames = new ArrayList<String>();
From source file com.pentacog.mctracker.MCServerTrackerActivity.java
/** * * @author Affian * */ @SuppressWarnings("deprecation")
From source file markson.visuals.sitapp.CCActivity.java
public class CCActivity extends ListActivity { ArrayList<HashMap<String, String>> mylist = new ArrayList<HashMap<String, String>>(); JSONObject json;
From source file pam.widget.activities.EntityBoardActivity.java
public class EntityBoardActivity extends ListActivity { /** Called when the activity is first created. */ TextView statusTv; TextView titleTv; RelativeLayout emptyRl; SimpleDateFormat hourFormatter = new SimpleDateFormat("HH:mm");
From source file fr.cph.stock.android.activity.OverallActivity.java
public class OverallActivity extends ListActivity implements IStockTrackerActivity { private static final String TAG = "OverallActivity"; private Tracker tracker;
From source file com.example.android.bluetoothlegatt.ui.DeviceScanActivity.java
/** * Activity for scanning and displaying available Bluetooth LE devices. */ public class DeviceScanActivity extends ListActivity { private final static String TAG = DeviceScanActivity.class.getSimpleName();
From source file se.anyro.tagtider.StationActivity.java
/** * Activity displaying arrivals or departures at a specific station */ public class StationActivity extends ListActivity { private static final int FIVE_MINUTES = 300000;
From source file com.germainz.identiconizer.ContactsListActivity.java
public class ContactsListActivity extends ListActivity { ArrayList<Integer> checkedItems = new ArrayList<>(); ContactsCursorAdapter mAdapter; Cursor mCursor; final static int SERVICE_ADD = 0;
From source file org.example.camera.List14.java
/**
* Demonstrates how to write an efficient list adapter. The adapter used in this
* example binds to an ImageView and to a TextView for each row in the list.
*
* To work efficiently the adapter implemented here uses two techniques: - It
* reuses the convertView passed to getView() to avoid inflating View when it is
From source file au.com.wallaceit.reddinator.ViewAllSubredditsActivity.java
public class ViewAllSubredditsActivity extends ListActivity { public static final int RESULT_SET_SUBREDDIT = 2; public static final int RESULT_REFRESH_LIST = 1; private GlobalObjects global; private ArrayList<String> sreddits; private JSONArray srjson;