linyudavid / cig-android-development

Automatically exported from code.google.com/p/cig-android-development
0 stars 0 forks source link

ImageButton datePicker in Chapter 10 #7

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
the datePicker in Chapter 10 causes a force close

after a couple days of researching (i'm not very experienced with java) I 
discovered the cause

in the xml layout the <ImageButton /> is defined for the datePicker.

in the RecipeEntry.java file the code "private Button pickDate;" and "pickDate 
= (Button) findViewById(R.id.datePicker);" should be:

private ImageButton pickDate;

pickDate = (ImageButton) findViewById(R.id.datePicker);

Hope this helps other Complete Idiots

Original issue reported on code.google.com by jedi...@gmail.com on 22 Aug 2011 at 6:59