[android-beginners] Re: Notepad Tutorial and sqlite3

2009-10-04 Thread gmseed
Hi Emre Thanks for your reply. I'll try your suggestion. Strange because on p540 of Conder Darcey's Android book they state: # sqlite3 /data/data/com.androidbook.PetTracker/databases/ pet_tracker.db with text ...to connect to the database we created so I just followed the same style.

[android-beginners] Re: Notepad Tutorial and sqlite3

2009-10-04 Thread gmseed
Hi Emre Tried accessing the Notepad tutorial db and still get nothing?: ./adb -s emulator-5554 shell # sqlite3 /data/data/com.android.demo.notepad1.Notepadv1/databases/ notes SQLite version 3.5.9 Enter .help for instructions sqlite .tables sqlite .databases sqlite Graham On 3 Oct, 21:47, Emre

[android-beginners] Re: Notepad Tutorial and sqlite3

2009-10-04 Thread gmseed
Hi Emre Eventually found the database!! I opened the Eclipse DDMS perspective and clicked on the File Explorer tab and tracked the database down under: /data/data/com.android.demo.notepad1/database/data which is not I would expect :-) If I now rerun sqlite via the adb shell I get: ./adb -s

[android-beginners] Re: Notepad Tutorial and sqlite3

2009-10-04 Thread Emre A. Yavuz
Hi Graham, I'm glad to hear that ... Good luck with the rest, Emre Date: Sun, 4 Oct 2009 08:16:43 -0700 Subject: [android-beginners] Re: Notepad Tutorial and sqlite3 From: gms...@gmail.com To: android-beginners@googlegroups.com Hi Emre Eventually found the database

[android-beginners] Re: Notepad Tutorial and sqlite3

2009-10-03 Thread Emre A. Yavuz
Hi Graham, By executing the following command # sqlite3 /data/data/com.android.demo.notepad1.Notepadv1/databases/notes.db you've probably created a new database called notes and therefore it's not surprising that it doesn't contain any of the tables you look for. Try # sqlite3

[android-beginners] Re: NotePad tutorial, trouble removing notes

2009-05-16 Thread Moto Zarkov
I thought it was broken as well, but found that it is just a matter of confusion regarding the tutorial. If you examine the code, you'll find that we (beginning Android developers!) implemented the delete functionality in a CONTEXT menu. This refers to the 'click and hold' menu, not the menu

[android-beginners] Re: NotePad tutorial, trouble removing notes

2009-04-27 Thread Jose Martinez
it doesn't work for my using jaunty and the same sdk + eclipse. Even if I try the Notepadv2Solution doesn't work. --- José Andrés Martínez S. (http://jamslug.com) Good skill! Luck is for losers! On Sun, Apr 26, 2009 at 12:30 PM, asymmetric oxy...@gmail.com wrote: hi, i'm reading the notepad

[android-beginners] Re: Notepad tutorial

2009-01-12 Thread alex.james....@googlemail.com
] Re: Notepad tutorial have you placed the files in proper directoriesnotes_row.xml must be in under reslayout folder On 1/8/09, Teena tiny...@earthlink.net wrote: Hi all. I'm following through the notepad tutorial.  I'm in Exercise 1 and in step 5 it says

[android-beginners] Re: Notepad tutorial

2009-01-12 Thread PRATAP SOLAPUR
misplaced? _ From: android-beginners@googlegroups.com [mailto:android-beginn...@googlegroups.com] On Behalf Of PRATAP SOLAPUR Sent: Wednesday, January 07, 2009 11:02 PM To: android-beginners@googlegroups.com Subject: [android-beginners] Re: Notepad tutorial have you placed

[android-beginners] Re: Notepad tutorial

2009-01-10 Thread Teena
[mailto:android-beginn...@googlegroups.com] On Behalf Of PRATAP SOLAPUR Sent: Thursday, January 08, 2009 10:59 PM To: android-beginners@googlegroups.com Subject: [android-beginners] Re: Notepad tutorial Are you getting any errors... On 1/9/09, Teena tiny...@earthlink.net wrote: Thanks

[android-beginners] Re: Notepad tutorial

2009-01-08 Thread Teena
:02 PM To: android-beginners@googlegroups.com Subject: [android-beginners] Re: Notepad tutorial have you placed the files in proper directoriesnotes_row.xml must be in under reslayout folder On 1/8/09, Teena tiny...@earthlink.net wrote: Hi all. I'm following through

[android-beginners] Re: Notepad tutorial

2009-01-08 Thread PRATAP SOLAPUR
-beginn...@googlegroups.com] On Behalf Of PRATAP SOLAPUR Sent: Wednesday, January 07, 2009 11:02 PM To: android-beginners@googlegroups.com Subject: [android-beginners] Re: Notepad tutorial have you placed the files in proper directoriesnotes_row.xml must be in under reslayout folder

[android-beginners] Re: notepad tutorial problem with Input configuration changed

2008-12-16 Thread radiolistener
Hi ThisNameAgain, I don't have a G1 yet, so I can't say I've tried it. But I've done a lot with the Notepad example. If you are on Exercise2, you may want to forge ahead to exercise3 and see if that solves it. With exercise 2 it is hobbled, in that it can not save state if it loses focus.

[android-beginners] Re: Notepad Tutorial

2008-10-17 Thread jtaylor
You can use a sub-activity. Here is WikiNotes which does interesting things to Notes. http://code.google.com/p/apps-for-android/source/browse/trunk/#trunk/WikiNotes - Juan T. On Oct 17, 8:33 pm, EASimon [EMAIL PROTECTED] wrote: I found the notepad tutorial very helpful, however I'm looking