I checked the Errata page and could not find the error, and I also tried going to the Errata Form, but I could not find the actual Errata option :S
On pg. 145, in the MainActivity.java file of the BasicViews4 class, the following code:
Code:
Button btnOpen = (Button) findViewById(R.id.btnSet);
btnOpen.setOnClickListener(new OnClickListener()
should be:
[code]
Code:
Button btnSet = (Button) findViewById(R.id.btnSet);
btnSet.setOnClickListener(new OnClickListener()
Hope that helps :)