User Tools

Site Tools


android_learning:headfirst_android_development_notes:chapter_11

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
android_learning:headfirst_android_development_notes:chapter_11 [2016/03/31 01:00] – [p. 450: Delete] mithatandroid_learning:headfirst_android_development_notes:chapter_11 [2016/04/23 22:23] (current) – [p. 444: Code block] mithat
Line 32: Line 32:
 } }
 </file> </file>
-Note that the constructor in the above class definition creates compiler rage. It gets fixed on the following page.+The constructor in the above class definition will create compiler rage---which is fixed on the following page. But if you're impatient, the solution is to invoke to parent class' ctor:<code java> 
 +    StarbuzzDatabaseHelper(Context context) { 
 +        super(context, DB_NAME, null, DB_VERSION); 
 +    }</code> 
  
 ===== p. 447: Schema definition ===== ===== p. 447: Schema definition =====
android_learning/headfirst_android_development_notes/chapter_11.1459386054.txt.gz · Last modified: 2016/03/31 01:00 by mithat

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki