On Mon, Aug 1, 2011 at 7:11 AM, DB12 <[email protected]> wrote:
> mAddData = (Button) findViewById(R.id.addData); > mPickDate = (Button) findViewById(R.id.pickDate); > I don't know which of these is line 60, but what I would do is replace this with: View temp1 = findViewById(R.id.addData); View temp2 = findViewById(R.id.pickDate); Then use your debugger see the actual type you're getting for the offending variable. ------------------------------------------------------------------------------------------------- TreKing <http://sites.google.com/site/rezmobileapps/treking> - Chicago transit tracking app for Android-powered devices -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en

