@Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); Bundle parms = getIntent().getExtras(); int sessionId = parms.getInt("sess_id"); profileId = parms.getInt("prof_id"); if (savedInstanceState != null) { sessionId = savedInstanceState.getInt("sess_id"); } if (sessionId == 0) { loginFailure(); } else { loadContext(sessionId); } }
/** Called when the activity is first created. */ @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.rss_reader); this.getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_STATE_ALWAYS_HIDDEN); btnManage = (Button) findViewById(R.id.btn_manage); btnBrowse = (Button) findViewById(R.id.btn_browse); btnRefresh = (Button) findViewById(R.id.btn_refresh); btnSearch = (Button) findViewById(R.id.btn_search); btnManage.setOnClickListener(this); btnBrowse.setOnClickListener(this); btnRefresh.setOnClickListener(this); btnSearch.setOnClickListener(this); txtSearch = (EditText) findViewById(R.id.txt_search); init(); boolean hasUpdate = false; try { hasUpdate = getIntent().getExtras().getBoolean("rss_update"); } catch (NullPointerException e) { e.printStackTrace(); } if (hasUpdate) { rssFeed = dbQuery.getUpdatedRssFeed(); updateListView(); } else loadData(null, true, false, true); }
/** * When a user selects an item: - If it's a directory, load that directory. - If it's a file, open * the SheetMusicActivity. */ @Override protected void onListItemClick(ListView parent, View view, int position, long id) { super.onListItemClick(parent, view, position, id); FileUri file = (FileUri) this.getListAdapter().getItem(position); if (file.isDirectory()) { this.loadDirectory(file.getUri().getPath()); return; } else { ChooseSongActivity.openFile(file); } }
@Override public void onResume() { super.onResume(); rootdir = Environment.getExternalStorageDirectory().getAbsolutePath(); directoryView = (TextView) findViewById(R.id.directory); SharedPreferences settings = getPreferences(0); String lastBrowsedDirectory = settings.getString("lastBrowsedDirectory", null); if (lastBrowsedDirectory == null) { lastBrowsedDirectory = rootdir; } loadDirectory(lastBrowsedDirectory); }
@Override public boolean onOptionsItemSelected(MenuItem item) { super.onOptionsItemSelected(item); switch (item.getItemId()) { case R.id.mnu_exit: if (!isTaskRunning) finish(); else Toast.makeText(RssReaderActivity.this, R.string.rss_keep_updating, Toast.LENGTH_SHORT) .show(); break; case R.id.mnu_about: break; default: break; } return true; }
@Override public void onCreate(Bundle state) { super.onCreate(state); setContentView(R.layout.file_browser); setTitle("MidiSheetMusic: Browse Files"); }
@Override public void onDestroy() { dbQuery.closeDB(); super.onDestroy(); }
@Override protected void onSaveInstanceState(Bundle outState) { super.onSaveInstanceState(outState); if (this.session != null) outState.putInt("sess_id", this.session.ID); }
public void handleMessage(Message msg) { super.handleMessage(msg); try { prog.dismiss(); } catch ( IllegalArgumentException e) { // this may happen due to race conditions on activity shutdown? e.printStackTrace(); } switch (msg.what) { case QH_OK: buildView(); break; case QH_EMPTY: doAlert(null, "Server gave an unexpected response (no signon acknowledgement?)"); break; case QH_ERR_OFX: { OfxError e = (OfxError) msg.obj; switch (e.getErrorCode()) { // case StatusResponse.STATUS_ERROR: // General error (ERROR) // case StatusResponse.STATUS_MFA_REQUIRED: // User credentials are correct, but // further authentication required (ERROR) // case StatusResponse.STATUS_MFA_INVALID: // MFACHALLENGEA contains invalid // information (ERROR) case StatusResponse .STATUS_FI_INVALID: // <FI> Missing or Invalid in <SONRQ> (ERROR) doAlert(e, "Server is rejecting connection details (FI_ID or FI_ORG)"); break; // case StatusResponse.STATUS_PINCH_NEEDED: // Must change USERPASS (INFO) case StatusResponse .STATUS_AUTHTOKEN_REQUIRED: // OFX server requires AUTHTOKEN in signon during // the next session (ERROR) case StatusResponse .STATUS_BAD_LOGIN: // Signon invalid (see section 2.5.1) (ERROR) case StatusResponse.STATUS_AUTHTOKEN_INVALID: // AUTHTOKEN invalid (ERROR) loginFailure(); break; case StatusResponse.STATUS_ACCT_BUSY: // Customer account already in use (ERROR) doAlert(e, "Your account is currently in use"); break; case StatusResponse.STATUS_ACCT_LOCKED: // USERPASS Lockout (ERROR) doAlert(e, "Your account has been locked"); break; // case StatusResponse.STATUS_EMPTY_REQUEST: // Empty signon transaction not // supported (ERROR) // case StatusResponse.STATUS_PINCH_REQUIRED: // Signon invalid without // supporting pin change request (ERROR) // case StatusResponse.STATUS_CLIENTUID_REJECTED: // CLIENTUID error (ERROR) case StatusResponse .STATUS_CALL_US: // User should contact financial institution (ERROR) doAlert(e, "Please contact your financial institution"); break; default: doAlert(e, "Server refused the login"); break; } } case QH_ERR_HTTP: case QH_ERR_TIMEOUT: case QH_ERR_CONN: case QH_ERR_SSL: doRetryableAlert((Exception) msg.obj, "Unable to connect to server"); break; default: doAlert((Exception) msg.obj, OfxProfile.exceptionComment((Exception) msg.obj)); break; } }