[android-developers] Re: android system make. error 45

2009-05-20 Thread PeterL
I remove gjdoc from Synaptic Package Manager; then build passed. On Apr 16, 4:20 pm, "pcstal...@gmail.com" wrote: > hi there guys. im trying to make the latest android system. ive gotten > past quite a few errors on my own. but i have been stoped dead in my > tracks here. im makeing the system.

[android-developers] Re: Will users be able to select text in the web browser?

2008-04-18 Thread peterL
Consider, for example, these situations: Suppose while you are browsing the Web, you see a phone number on a page - you'll want to be able to simply click it and call this number, or you see an address - you would just click and it opens on the Map, or you see something of interest that you'd like

[android-developers] Will users be able to select text in the web browser?

2008-04-16 Thread peterL
Hi all, I would really like for my application to be able to use this scenario: the user selects some text from a web page he/she is browsing using a standard web browser, and then my application handles the text from this selection. As far as I can see, this feature is currently absent, but ar

[android-developers] Re: Accessing bookmarks of the web browser

2008-04-08 Thread peterL
Thanks Megha, that worked perfectly. However, the documentation for ContentResolver.query(Uri uri, String[] projection, String selection, String[] selectionArgs, String sortOrder) reads: "Passing null for [projection] will return all columns", [which is discouraged to prevent reading data from s

[android-developers] Accessing bookmarks of the web browser

2008-04-08 Thread peterL
Hi all, How do I access bookmarks created in the web browser? I tried this: Cursor cur = getContentResolver().query(android.provider.Browser.BOOKMARKS_URI, null,null,null,null); But the returned cur is always null. Can anyone help please? Thanks~ --~--~-~--~~~---~--~-