Re: [android-developers] Re: Custom Keyboard for an App

2011-01-11 Thread Dan Dumont
This is also something I'm interested in. It's a shame there's no other framework to take advantage of if the IME framework is indeed incorrect for this use case. On Sun, Jan 9, 2011 at 9:57 PM, Justin Glaeser justin.glae...@gmail.comwrote: Thanks for the help. I would like to modify the

Re: [android-developers] Is it possible for an app to replace the NotificationManager?

2010-11-02 Thread Dan Dumont
Sure there is. Android has been missing persistent reminder notification sounds for a long time. Other custom builds have it i'm sure, but being able to set a preference for reminder sounds, vibrates etc would be better handled as part of the notification manager. Being able to extend it would

Re: [android-developers] Re: soft keyboard selection from app?

2010-07-16 Thread Dan Dumont
and it should bring up a phone keypad. On Thu, Jul 15, 2010 at 1:26 AM, jamesc jame...@gmail.com wrote: Well, I've got access to an X10 so I'd be willing to test out any variant apks you want to send my way. On Jul 15, 2:23 am, Dan Dumont ddum...@gmail.com wrote: No, I don't have a sony phone

Re: [android-developers] Re: soft keyboard selection from app?

2010-07-14 Thread Dan Dumont
My wife's phone has swipe built in and the phone keypad has all the buttons I need. I emailed SE and they seem pretty clueless so far, I've followed up asking them to direct me to their android development staff, because their android page just points users to general android help. And their

Re: [android-developers] Re: soft keyboard selection from app?

2010-07-14 Thread Dan Dumont
with the flags on the Xperia device to see what happens? On Jul 14, 7:49 pm, Dan Dumont ddum...@gmail.com wrote: My wife's phone has swipe built in and the phone keypad has all the buttons I need. I emailed SE and they seem pretty clueless so far, I've followed up asking them to direct me

Re: [android-developers] Re: 2.0 AccountManager - Implementing a new account type with Google, Facebook and Exchange

2009-12-01 Thread Dan Dumont
= context.getContentResolver(); Log.i(TAG, performSync: + account.toString()); } } On Nov 23, 8:46 pm, Dan Dumont ddum...@gmail.com wrote: Nice, thanks for doing that!I'll star it, I hope we get a response soon. On Mon, Nov 23, 2009 at 5:32 PM, Jerry Brady jerry.br

Re: [android-developers] Re: 2.0 AccountManager - Implementing a new account type with Google, Facebook and Exchange

2009-12-01 Thread Dan Dumont
to handle Intent { act=android.settings.SYNC_SETTINGS (has extras) } On Tue, Dec 1, 2009 at 4:18 PM, Dan Dumont ddum...@gmail.com wrote: I'll update my project asap!Thanks for looking into this!! when we create the binder, do we need to verify that the account variable is for us? IE

Re: [android-developers] Re: 2.0 AccountManager - Implementing a new account type with Google, Facebook and Exchange

2009-11-23 Thread Dan Dumont
jerry.br...@gmail.com wrote: I'm going to be trying it on a Droid this morning. On Nov 21, 10:07 pm, Dan Dumont ddum...@gmail.com wrote: I get that exception in the emulator ( doesn't reboot though ) I thought it was due to missing pieces of the emulator... does

Re: [android-developers] Re: 2.0 AccountManager - Implementing a new account type with Google, Facebook and Exchange

2009-11-21 Thread Dan Dumont
AbstractAccountAuthenticator's addAccount method whereas your code returns an intent that fires your authentication activity. The main issue for me so far is that I don't see that my AbstractAccountAuthenticator is ever being instantiated. Cheers, Jerry On Nov 20, 7:53 am, Dan Dumont ddum...@gmail.com

Re: [android-developers] Re: 2.0 AccountManager - Implementing a new account type with Google, Facebook and Exchange

2009-11-21 Thread Dan Dumont
AbstractAccountAuthenticator's addAccount method whereas your code returns an intent that fires your authentication activity. The main issue for me so far is that I don't see that my AbstractAccountAuthenticator is ever being instantiated. Cheers, Jerry On Nov 20, 7:53 am, Dan Dumont ddum...@gmail.com

Re: [android-developers] Re: 2.0 AccountManager - Implementing a new account type with Google, Facebook and Exchange

2009-11-20 Thread Dan Dumont
UID restrictions. The calling activity and the authenticator service all belong to the same application so I'm not sure why the system still throws an error about the UID not being correct. Cheers, Jerry On Nov 13, 11:54 pm, Dan Dumont ddum...@gmail.com wrote: For anyone still interested

Re: [android-developers] Re: 2.0 AccountManager - Implementing a new account type with Google, Facebook and Exchange

2009-11-20 Thread Dan Dumont
for requiring other packages when downloading an app from the market seamlessly? On Fri, Nov 20, 2009 at 7:53 AM, Dan Dumont ddum...@gmail.com wrote: Yes. But I make the AddAccountExplicitly call in my Authenticator.You use the AccountManager to create accounts. If you call AddAccountExplicitly

Re: [android-developers] Re: 2.0 AccountManager - Implementing a new account type with Google, Facebook and Exchange

2009-11-19 Thread Dan Dumont
service all belong to the same application so I'm not sure why the system still throws an error about the UID not being correct. Cheers, Jerry On Nov 13, 11:54 pm, Dan Dumont ddum...@gmail.com wrote: For anyone still interested.I've made a bit of progress. The google project below now

Re: [android-developers] Re: ListView problem is back.

2009-11-14 Thread Dan Dumont
in safe method of AsyncTask On 14 ноя, 06:52, Dan Dumont ddum...@gmail.com wrote: I'm pretty sure that if the size of the a... sergey.vasilin...@googlemail.com wrote: Hello, I have a error 11-14 01:23:23.204: ERROR/... android-developers+unsubscr...@googlegroups.comandroid-developers

Re: [android-developers] 2.0 AccountManager - Implementing a new account type with Google, Facebook and Exchange

2009-11-13 Thread Dan Dumont
I've gotten a bit further than you. The account manager seems to want to store AccountName+Type pairs, and have an AccountAuthenticator handle the storage and dirty bits of the actual authentication and credential storage. You will need to create an AccountAuthenticator from the

Re: [android-developers] [Android 2.0] Contacts FAQ?

2009-11-13 Thread Dan Dumont
I think there needs to be a whole set of FAQs written about #8. There is almost NO documentation written about the accounts APIs, and for some reason Google is not publishing the source to the accounts tester application. I'd love for some google-dev comments on why that is... or where we can

Re: [android-developers] [Android 2.0] Contacts FAQ?

2009-11-13 Thread Dan Dumont
To facilitate the discussion around #8, (android.accounts examples) I've started up a project over here: http://code.google.com/p/androidaccounts/ http://code.google.com/p/androidaccounts/If anyone is interested in pitching in and writing some examples, let me know so I can add you. The current

Re: [android-developers] 2.0 AccountManager - Implementing a new account type with Google, Facebook and Exchange

2009-11-13 Thread Dan Dumont
is as far as I've gotten to understanding what is available so far... and I'm stumped as to why new accounts don't seem to persist after their creation ( as far as the AccountsTester app is concerned ). On Fri, Nov 13, 2009 at 7:40 PM, Dan Dumont ddum...@gmail.com wrote: I've gotten a bit further

Re: [android-developers] Re: Can someone with a Motorola Droid call AccountManager.getAccounts() please?

2009-11-13 Thread Dan Dumont
To facilitate the discussion around this topic, I've started up a project over here: http://code.google.com/p/androidaccounts/ http://code.google.com/p/androidaccounts/If anyone is interested in pitching in and writing some examples, let me know so I can add you. The current state of the project

Re: [android-developers] ListView problem is back.

2009-11-13 Thread Dan Dumont
I'm pretty sure that if the size of the adapter changes while the layout is being calculated you will get this exception. All additions, deletions, and data updates should be done in the UI thread I think. Using an AsyncTask is one way to do this. Make sure that each piece of data your

Re: [android-developers] 2.0 AccountManager - Implementing a new account type with Google, Facebook and Exchange

2009-11-13 Thread Dan Dumont
For anyone still interested.I've made a bit of progress. The google project below now creates and lists accounts of the type for the project! On Fri, Nov 13, 2009 at 9:39 PM, Dan Dumont ddum...@gmail.com wrote: To facilitate the discussion around this topic, I've started up a project

Re: [android-developers] Re: com.google Authenticator for the new android.accounts.AccountManager API.

2009-11-13 Thread Dan Dumont
Micha, I also have an accounts project, but more as a collection of examples for how to use the Accounts API. Let me know if you find it useful: http://code.google.com/p/androidaccounts/ I'm adding to it as I find out more... On Thu, Nov 12, 2009 at 9:42 PM, Jerry Brady jerry.br...@gmail.com

[android-developers] java libraries

2009-05-20 Thread Dan Dumont
What are my options if I'd like to port something to the android platform and it depends on something like org.omg.CORBA? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android Developers group. To post to this

[android-developers] Re: Regular Expression Help

2009-01-14 Thread Dan Dumont
It is checking the entire length of the string... your pattern is not doing what you want. I suggest you read up on regular expressions. Your regexp says: Match 1 character a-z, followed by any character zero or more times. On Wed, Jan 14, 2009 at 2:28 AM, Josh joshdo...@gmail.com wrote:

[android-developers] Re: Regular Expression Help

2009-01-14 Thread Dan Dumont
Sorry, that's Match 1 character *NOT *a-z, followed by any character zero or more times. try ^[^a-z]+$ On Wed, Jan 14, 2009 at 10:00 AM, Dan Dumont ddum...@gmail.com wrote: It is checking the entire length of the string... your pattern is not doing what you want. I suggest you read up

[android-developers] Re: Android Marketplace?

2009-01-05 Thread Dan Dumont
I think the point of his post was that he wants to browse THE marketplace, not andappstore's marketplace... I'd like to know how as well. On Mon, Jan 5, 2009 at 1:03 PM, Al Sutton a...@funkyandroid.com wrote: Marketplace is a closed source app that Google is in control of and developing it

[android-developers] Re: What happens to the database when app is upgraded

2009-01-05 Thread Dan Dumont
There is a method that will get called when the version number you supply to the create db command exceeds the listed version that the user has ( you've upgraded your design ) You then put code in that handler to handle the database schema updates. Sorry I can't be more specific... my code is at

[android-developers] Re: Android Marketplace?

2009-01-05 Thread Dan Dumont
and purchasing. On Jan 5, 10:33 am, Shane Isbell shane.isb...@gmail.com wrote: On Mon, Jan 5, 2009 at 10:11 AM, Dan Dumont ddum...@gmail.com wrote: I think the point of his post was that he wants to browse THE marketplace, not andappstore's marketplace... I'd like to know how as well

[android-developers] Re: Sensor readings on demand

2009-01-05 Thread Dan Dumont
well... does onSeonsorchanged fire whenever the accelerometer changes? save the values when they change and read the saved values whenever you need to. On Mon, Jan 5, 2009 at 1:50 PM, clark clarkd...@gmail.com wrote: Hi all, I'm currently working on an application that needs to detect

[android-developers] Re: What happens to the database when app is upgraded

2009-01-05 Thread Dan Dumont
when you request a new or existing database you can provide a number (version of the db schema you are using) you should keep track of this, as it will be passed to your upgrade handler. On Mon, Jan 5, 2009 at 1:51 PM, Jay-andro jayan...@gmail.com wrote: Thanks all, for bringing the

[android-developers] Re: What happens to the database when app is upgraded

2009-01-05 Thread Dan Dumont
sorry... it's in the constructor of the helper http://code.google.com/android/reference/android/database/sqlite/SQLiteOpenHelper.html#SQLiteOpenHelper(android.content.Context,%20java.lang.String,%20android.database.sqlite.SQLiteDatabase.CursorFactory,%20int) On Mon, Jan 5, 2009 at 1:54 PM, Dan

[android-developers] Re: Target window when launching a new web browser activity?

2009-01-05 Thread Dan Dumont
Any ideas? On Thu, Jan 1, 2009 at 6:57 PM, ddum...@gmail.com ddum...@gmail.com wrote: It seems that when I send off an intent to open a web browser window, when i press the back button to go back to my launching activity, the window that was created in the browser app stays open. If