Wrox Programmer Forums
|
BOOK: Professional Android 2 Application Development
This is the forum to discuss the Wrox book Professional Android 2 Application Development, 2nd Edition by Reto Meier; ISBN: 978-0-470-56552-0
Welcome to the p2p.wrox.com Forums.

You are currently viewing the BOOK: Professional Android 2 Application Development section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
 
Old January 12th, 2012, 09:32 PM
Registered User
 
Join Date: Jan 2012
Posts: 2
Thanks: 0
Thanked 0 Times in 0 Posts
Question Chaper 2 TodoList problems with key

I typed in all the code just like the book stated only difference is I used android 2.2 open source so I could use it on my phone. I would like to know what key press that the app is looking for to add the text to the list? I tried enter but that moves to next line.
 
Old January 13th, 2012, 07:56 PM
Registered User
 
Join Date: Jan 2012
Posts: 1
Thanks: 0
Thanked 0 Times in 0 Posts
Default

try this
Quote:
if (event.getAction()== KeyEvent.ACTION_DOWN )
if (keyCode== KeyEvent.KEYCODE_ENTER)
instead of this
Quote:
if (event.getAction() == KeyEvent.ACTION_DOWN)
if (keyCode == KeyEvent.KEYCODE_DPAD_CENTER)
Enter key should add the items to the list
 
Old January 17th, 2012, 04:27 PM
Registered User
 
Join Date: Jan 2012
Posts: 2
Thanks: 0
Thanked 0 Times in 0 Posts
Default Fixed

The KEYCODE_ENTER fixed it.





Similar Threads
Thread Thread Starter Forum Replies Last Post
Got some problems when I tried to code the ToDoList android app Tobias BOOK: Professional Android Application Development ISBN: 978-0-470-34471-2 3 February 9th, 2011 04:59 AM
Chaper 8 enum Direction VistaFTW BOOK: Beginning ASP.NET 3.5 : in C# and VB BOOK ISBN: 978-0-470-18759-3 7 April 5th, 2009 11:47 PM
Chaper 6 Pivot transformation example?? japak BOOK: Professional SQL Server 2005 Integration Services ISBN: 0-7645-8435-9 2 March 10th, 2006 12:05 AM
Chaper 14 - over $1000 problems ftb_tx BOOK: Beginning PHP, Apache, MySQL Web Development ISBN: 978-0-7645-5744-6 0 November 21st, 2004 09:15 PM





Powered by vBulletin®
Copyright ©2000 - 2020, Jelsoft Enterprises Ltd.
Copyright (c) 2020 John Wiley & Sons, Inc.