[android-developers] UNSUBSCRIBE

2011-09-17 Thread Tim Jowers
UNSUBSCRIBE

On Sun, Sep 11, 2011 at 2:34 PM, Chris Stratton cs07...@gmail.com wrote:

 On Sunday, September 11, 2011 1:44:54 AM UTC-4, mwllace wrote:

 Im using  and intent to invoke the default dialer and automatically
 call  phone number stored in my application. Everything works fine,
 but the number is visible in the default dialer UI. I need to display
 something else in place of the number like My Special Number.

 That should not be permitted - if an application without permission to dial
 the phone uses an intent to do so, the user needs to know what number they
 are dialing, in order to make an informed choice if they want to dial it or
 not.


 --
 You received this message because you are subscribed to the Google
 Groups Android Developers group.
 To post to this group, send email to android-developers@googlegroups.com
 To unsubscribe from this group, send email to
 android-developers+unsubscr...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/android-developers?hl=en

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en


[android-developers] How r things

2011-06-16 Thread Tim Jowers
Do I need to come by.  What else remains to be done.
Tim

On Thursday, June 16, 2011, Glenn Boothe gl...@webstationinc.com wrote:
 No problem at all.


 Thanks,

 GB

 -Original Message-
 From: Tim Jowers [mailto:timjow...@gmail.com]
 Sent: Thursday, June 16, 2011 10:24 AM
 To: Glenn Boothe
 Subject: Cannot be in this am

 Glenn, sorry I got backed up here. I will shoot fpr this aftwrnoon. My hpurs 
 are.a little over 32. Fell bad about my mixed up schedule but glad we got.it 
 done. And pleasure meeting you and your team.

 Timjowers



-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en


[android-developers] How to get paid? If you put in wrong acct....

2010-07-11 Thread Tim Jowers
Has anyone been able to get paid after putting in wrong account information?

I made this mistake and for a month now have tried to get it straight.
Unfortunately, Google only has a web entry form and it does not allow free
text. So, I've tried the options they have sent me and tried and tried but
cannot get them to reset my Tools-Financials bank account so I can enter
the correct information.

They sent me an email stating they would not allow me to put in my bank
account because I filled in the form from the wrong email address. Odd since
this is exactly the same one I use when logging into the Android Marketplace
and linking to the Google Checkout.

Of course, attempting to reply to the email address resulted in a bounce.
Also, they do not provide any way to contact them in the email.

So, anyone have any idea how to get them to reset my Checkout account so I
can get paid the little bit I made from writing an app?

Thanks!
Tim Jowers

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

[android-developers] Re: How to get paid? If you put in wrong acct....

2010-07-11 Thread Tim Jowers
On Sun, Jul 11, 2010 at 7:59 PM, Tim Jowers timjow...@gmail.com wrote:


 Has anyone been able to get paid after putting in wrong account
 information?

 I made this mistake and for a month now have tried to get it straight.
 Unfortunately, Google only has a web entry form and it does not allow free
 text. So, I've tried the options they have sent me and tried and tried but
 cannot get them to reset my Tools-Financials bank account so I can enter
 the correct information.

 They sent me an email stating they would not allow me to put in my bank
 account because I filled in the form from the wrong email address. Odd since
 this is exactly the same one I use when logging into the Android Marketplace
 and linking to the Google Checkout.

 Of course, attempting to reply to the email address resulted in a bounce.
 Also, they do not provide any way to contact them in the email.

 So, anyone have any idea how to get them to reset my Checkout account so I
 can get paid the little bit I made from writing an app?

 Thanks!
 Tim Jowers


I think I get it. Log into Google Checkout. Log into another email account
on gmail. Do the Google Checkout form. It uses the newly logged into Gmail
account rather than the contact info for the Google Checkout account page
still open.

TimJowers

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Re: [android-developers] Re: How to get all contact's name phone number, email for 2.0

2009-11-26 Thread Tim Jowers
Is there an API to determine the phone's version of Android? For now,
I'm using try-catch. Sucky but works.

Also, my 2.0 built APK does not run on my G1 phone. Maybe it's
something I've done but I haven't dug into it. Maybe that's what you
meant by intelligent class loading do you mean Class.forName()
or Class.loadClass() or whatever its called instead of import
blahblh;?

For now I'm having to reverse engineer the URI for 2.0 and use it so I
have files which build on 1.5 but run with 2.0.

Thanks!
Tim

On Thu, Nov 26, 2009 at 7:15 AM, Mark Murphy mmur...@commonsware.com wrote:
 axel wrote:
 Back to the original question: Apps working well with 1.5/1.6 are
 broken with 2.0 - exactly the same problem I have.
 AFAIK the code below is perfectly valid and should continue to work
 with 2.0 - unfortunately it does not.

 String[] returnColumns = new String[] {
 Contacts.ContactMethods.PERSON_ID,
 Contacts.ContactMethods.DISPLAY_NAME,
 Contacts.ContactMethods.KIND,
 Contacts.ContactMethods.DATA,
 Contacts.ContactMethods.TYPE
 };

 Cursor cursor = activity.managedQuery
 (Contacts.ContactMethods.CONTENT_URI, returnColumns, null, null,
 Contacts.ContactMethods.DISPLAY_NAME +  ASC);

 In 2.0 AVD I always get 0 for cursor.getCount() - in 1.5/1.6 AVD this
 works well. Of course I have created contacts in the AVD before.
 If I click on accounts in the options menu of the Contacts
 application if causes a force close (doesn't look pretty mature to
 me).
 The sad thing is that I have an application on the market and receive
 complains about force close errors when contacts are accessed but
 I'm unable to reproduce it with AVD.

 You will need to use reflection (or intelligent class loading) and use
 the ContactsContracts provider when running on Android 2.0, allowing
 your existing Contacts code to be used on 1.5/1.6.

 --
 Mark Murphy (a Commons Guy)
 http://commonsware.com | http://twitter.com/commonsguy

 Android Development Wiki: http://wiki.andmob.org

 --
 You received this message because you are subscribed to the Google
 Groups Android Developers group.
 To post to this group, send email to android-developers@googlegroups.com
 To unsubscribe from this group, send email to
 android-developers+unsubscr...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/android-developers?hl=en

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en


Re: [android-developers] Re: How to get all contact's name phone number, email for 2.0

2009-11-26 Thread Tim Jowers
Sweet! Mark. Thanks for covering this. I don't see it solved anywhere
on the Net or developer.android.com.

Tim


On Thu, Nov 26, 2009 at 7:42 AM, Mark Murphy mmur...@commonsware.com wrote:
 Tim Jowers wrote:
 Is there an API to determine the phone's version of Android? For now,
 I'm using try-catch. Sucky but works.

 android.os.Build.VERSION.SDK. Or, if you're only worrying about 1.6 and
 newer, use SDK_INT instead of SDK.

 Also, my 2.0 built APK does not run on my G1 phone. Maybe it's
 something I've done but I haven't dug into it. Maybe that's what you
 meant by intelligent class loading do you mean Class.forName()
 or Class.loadClass() or whatever its called instead of import
 blahblh;?

 Well, you'll need to look at your stack trace. You can get that from adb
 logcat, DDMS, or the DDMS perspective in Eclipse. IIRC, using a class
 that references 2.0 APIs in a 1.5/1.6 environment will give you a
 VerifyError.

 Using Class.forName() is one technique to create an application that can
 use ContactsContract. Or, do something like this:

 abstract class ContactsAdapterBridge {
abstract ListAdapter buildNameAdapter(Activity a);
abstract ListAdapter buildPhonesAdapter(Activity a);
abstract ListAdapter buildEmailAdapter(Activity a);

public static final ContactsAdapterBridge INSTANCE=buildBridge();

private static ContactsAdapterBridge buildBridge() {
int sdk=new Integer(Build.VERSION.SDK).intValue();

if (sdk5) {
return(new OldContactsAdapterBridge());
}

return(new NewContactsAdapterBridge());
}
 }

 This is a fragment of a sample that I'll be uploading to github tomorrow
 sometime (I hope). NewContactsAdapterBridge uses ContactsContract;
 OldContactsAdapterBridge uses Contacts. So long as you don't try
 *loading* a class that uses 2.0 APIs, you won't get a VerifyError. The
 2.0-referencing class can still be in the APK, though.

 --
 Mark Murphy (a Commons Guy)
 http://commonsware.com | http://twitter.com/commonsguy

 Android Training in US: 11-15 January 2010: http://onlc.com

 --
 You received this message because you are subscribed to the Google
 Groups Android Developers group.
 To post to this group, send email to android-developers@googlegroups.com
 To unsubscribe from this group, send email to
 android-developers+unsubscr...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/android-developers?hl=en

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en


Re: [android-developers] Re: How to get all contact's name phone number, email for 2.0

2009-11-26 Thread Tim Jowers
I agree with you Axel, I got it working. But shouldn't have had to do so.
The larger moose is version compatibility. The industry standard is
two versions back the API should work. Apache does not honor this.
Now, Google is not either. It is PAINFUL to partner. In my case, 10
hours plus future maintenance headaches.

Well, its a great platform nonetheless. Just in its infancy I guess.

Tim


On Thu, Nov 26, 2009 at 10:44 AM, axel camuelle...@googlemail.com wrote:
 You will need to use reflection (or intelligent class loading) and use
 the ContactsContracts provider when running on Android 2.0, allowing
 your existing Contacts code to be used on 1.5/1.6.
 The Contacts.ContactMethods API is deprecated but not dropped. And
 even deprecated APIs are required to function properly.
 Google has to make sure (and even stated it in this forum) that this
 is the case. It cannot be the idea for applications to check the
 Android version invoke APIs accordingly via reflection.
 I don't like to receive complaints from user that my application
 doesn't work properly on their phone but if Google doesn't ensure that
 event deprecated APIs, it is not my fault.
 If many developers (especially of free applications) think likewise
 user will experience a increasing number of non-working applications
 in the Android market.
 But thanks for your reply anyway :-)

 Axel

 --
 You received this message because you are subscribed to the Google
 Groups Android Developers group.
 To post to this group, send email to android-developers@googlegroups.com
 To unsubscribe from this group, send email to
 android-developers+unsubscr...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/android-developers?hl=en

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en


[android-developers] Re: debug application - gdb

2009-05-12 Thread Tim Jowers

man gdb

Basically the gnu debugger connects to a running application. I think
you can also launch the app with gdb. How does this relate to Android
dev? Dunno. Perhaps you should run strace (linux, truss on others) on
the emulator to see what it is doing if that is what you are after.

You debug andoird apps by launching them in Debug within Eclipse. Works great.

Best wishes,
TimJowers


On Mon, May 11, 2009 at 10:34 AM, Maha maha2...@gmail.com wrote:

 Hi,

   Please tell me how to debug application using gdb

 Thanks,
 Maha
 


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers-unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: Web service calling from andriod

2009-05-12 Thread Tim Jowers

As I'm sure you know, the package you are using is not on the Android.
You can either compile it into your product if the license for ksoap
allows you or use another soap client technology. I've used one from
apache before on other java projects. Probably your webservice
container does create a proxy stub jar from your webservice with the
classes you need plus throw in the apache ones?

TimJowers


On Mon, May 11, 2009 at 10:16 AM, RS.Giridaran rsgirida...@gmail.com wrote:

 Hi all,

 i want to call a web service call, for that i used ksoap(j2me).when i
 do a service call i am getting the folliwing exception
 java.lang.NoClassDefFoundError: javax/microedition/io/Connector

 Please help me solve this issue

 


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers-unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: webview will not follow links on some pages, why?

2009-05-12 Thread Tim Jowers

This was not a hard one. The default webclient doesn't load some
pages. Not sure why/what the algorithm. I over-rode with a custom
webclient and it works now.

Thanks,
TimJowers


On Sat, May 9, 2009 at 1:11 PM, timjowers timjow...@gmail.com wrote:

 Does anyone know how to get webview to follow links/allow submit for
 all pages?
 Consider this one:

 html
 body
 a href=/Home/a
 /body
 /html

 If I open a webview to it then I cannot hit the link. If I first open
 to http://www.google.com/ and then next to the page above [by
 overriding the url nav] then it works. Crazy. Perhaps webview can only
 go to root, /, URL's first?  Or what gives?

 Fails in emulator and on phone.

 Thanks!
 TimJowers

 


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers-unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---