Skip to Main Content
Android Programowanie aplikacji. Rusz głową! Wydanie II
book

Android Programowanie aplikacji. Rusz głową! Wydanie II

by David Griffiths, Dawn Griffiths
October 2018
Intermediate to advanced content levelIntermediate to advanced
880 pages
33h 52m
Polish
Helion
Content preview from Android Programowanie aplikacji. Rusz głową! Wydanie II
730
Rozdział 17.
Kod klasy wewnętrznej
private class UpdateDrinkTask extends AsyncTask<Integer, Void, Boolean> {
private ContentValues drinkValues;
protected void onPreExecute() {
CheckBox favorite = (CheckBox) findViewById(R.id.favorite);
drinkValues = new ContentValues();
drinkValues.put(”FAVORITE”, favorite.isChecked());
}
protected Boolean doInBackground(Integer... drinks) {
int drinkId = drinks[0];
SQLiteOpenHelper coffeinaDatabaseHelper =
new CoffeinaDatabaseHelper(DrinkActivity.this);
try {
SQLiteDatabase db = coffeinaDatabaseHelper.getWritableDatabase();
db.update(”DRINK”, drinkValues,
”_id = ?”, new String[] {Integer.toString(drinkId)}); ...
Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.
Start your free trial

You might also like

Wydajne aplikacje dla systemu Android

Wydajne aplikacje dla systemu Android

Doug Sillars
Android. Receptury

Android. Receptury

Ian F. Darwin
Architektura aplikacji w Pythonie

Architektura aplikacji w Pythonie

Bob Gregory Harry Percival

Publisher Resources

ISBN: 9788328340794