[android-developers] Re: MenuItems and Typefaces

2009-02-23 Thread Christian Martín Reinhold
I am using the arabic font at the /assets/fonts folder and then used the locale of ctx.getResources().configuration().locale to change the locale to the desired ones (having previously added the configuration settings uses-permition at the xml manifest), and it works. It changes to the arabic

[android-developers] Re: Paid Download Stats?

2009-02-23 Thread deepdr...@googlemail.com
then again, what is the ratio of Android phones being able to download paid apps (US only) to iPhones? Maybe the 5% isn't that bad at all? On 22 Feb., 22:12, tspree15 thedailyb...@gmail.com wrote: Is anyone having a lot of success with the market thus far? I'm seeing about 5% of the downloads

[android-developers] What's holding up UK paid app's

2009-02-23 Thread Ryan
Hi, Do we know why UK end users can't get paid app's yet? Is it just a case of waiting for T-Mobile to release the latest update, or do Google still need to do some more work to make this live? Anyone got any rumours of a timeline? Thanks a lot, Ryan

[android-developers] Bug while selecting from a list of multi-select items whilst using filterable

2009-02-23 Thread Gyan
I'm displaying the contacts in a Multi-select Ok, Cancel dialog box. I've implemented Filterable for the adapter that displays the contacts in the dialog. The problem is, once i try and select(check) a contact while i'm using a type ahead, the check box in that particular position is checked and

[android-developers] Bug while selecting from a list of multi-select items whilst using filterable

2009-02-23 Thread Gyan
I'm displaying the contacts in a Multi-select Ok, Cancel dialog box. I've implemented Filterable for the adapter that displays the contacts in the dialog. The problem is, once i try and select(check) a contact while i'm using a type ahead, the check box in that particular position is checked and

[android-developers] Re: java.lang.VerifyError -- in Android

2009-02-23 Thread Maddy
Hi Fadden, Thanks for your reply. I had changed the signature of the method and now everything works properly. With this excercise I had learned few things about 'dexdump', thanks a lot for your help. On Feb 20, 11:04 pm, fadden fad...@android.com wrote: On Feb 20, 1:29 am, Maddy

[android-developers] Re: Install .odex + .apk

2009-02-23 Thread David Turner
You should not mess with .odex files, they are essentially device-specific optimized versions of your classes.dex that are generated by the installer for you to speed up application startup and runtime. The exact format of .odex files is likely to change overtime for a variety of reasons and you

[android-developers] Checking user activity / whether the screen is locked.

2009-02-23 Thread Bram Bonné
Hi, For one reason or another, my last post didn't show up in the Discussions-list, so here's a repost (sorry): I'm writing a presence agent application for Android (that checks if you are 'available' or 'away'). For this I would like to check any activity on the phone. The easiest way to do

[android-developers] Re: Does Android support APDUConnection as known from JSR 177?

2009-02-23 Thread Anders Rundgren
I don't know but JSR 177 seems to be a J2ME-related JSR. Android has (in theory) a JCE-based API that does what JSR 177 does and more. The problem is really that there is no link between the JCE and the SIM if that's what you are looking for. Personally I think using the SIM with JSR 177 is a bad

[android-developers] Re: Layout question

2009-02-23 Thread Mark Murphy
Doughy wrote: I would like to create an application that has 5 images, 4 of which are small, and one is larger. The 4 small images I would like to place in the corners of the screen, and the big image I want to be right in the center. Like this:

[android-developers] Re: ListView issue- getchildat()

2009-02-23 Thread Mark Murphy
Anonymous Anonymous wrote: Thanks Romain,But is there anyway i can set for those items which are outside the screen? or while scrolling down or something? Override getView() in your adapter and do whatever you want to the row Views as they are created. -- Mark Murphy (a Commons Guy)

[android-developers] Re: Memory leak in BitmapFactory/Gallery?

2009-02-23 Thread qvark
Hi, on a regular JVM you can generate a dump in the very moment the first OOM occurs (starting it with the -XX:+HeapDumpOnOutOfMemoryError option), which is very useful. From your previous posts I have deduced that's impossible with Dalvik... am I right? are you considering this feature?

[android-developers] Re: Local service: how to tell activity when done?

2009-02-23 Thread Wouter
Hi, If you create the BroadcastReceiver as an inner class, you do have access in the broadcastreceiver to anything in your activity. So in you activity, do something like: /** * Receive messages from our Service */ private BroadcastReceiver receiver = new

[android-developers] Re: What's holding up UK paid app's

2009-02-23 Thread AusR
I think we are waiting for TMUK to pull their finger out! --~--~-~--~~~---~--~~ 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

[android-developers] How to check which button is clicked

2009-02-23 Thread gganesh
hi friends, I have 3 buttons on the screen and i have to perform different task according to the button clicked ,how can i check which button is clicked Thanks in Advance ganesh --~--~-~--~~~---~--~~ You received this message because you are subscribed to the

[android-developers] Re: How to check which button is clicked

2009-02-23 Thread Andrea Fanfani
On Mon, Feb 23, 2009 at 05:13:50AM -0800, gganesh wrote: hi friends, I have 3 buttons on the screen and i have to perform different task according to the button clicked ,how can i check which button is clicked 3 different listeners ? a.f. -- Andrea Fanfani - a.fanfani [at]

[android-developers] Re: How to check which button is clicked

2009-02-23 Thread Johnny
In your Java code, you can get these three buttons by: findViewById(); - assume that you have already set id for these buttons in the xml file Then you can add OnClickListener to each of them, to perform specific task seperately. --Johnny On Feb 23, 9:13 pm, gganesh ganesh@gmail.com wrote:

[android-developers] Re: What's holding up UK paid app's

2009-02-23 Thread Al Sutton
And for app payments to be a bit more reliable. And for Google to check their TCs against UK law. . (I can see it being a few weeks) Al. AusR wrote: I think we are waiting for TMUK to pull their finger out! -- == Funky Android Limited is registered in England Wales with

[android-developers] Re: What's holding up UK paid app's

2009-02-23 Thread AusR
TMUK won't even acknowledge that an update is due. --~--~-~--~~~---~--~~ 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

[android-developers] Re: How to check which button is clicked

2009-02-23 Thread guptha
Thanks a lot for your reply On Feb 23, 6:32 pm, Johnny johnnylee...@gmail.com wrote: In your Java code, you can get these three buttons by: findViewById(); - assume that you have already set id for these buttons in the xml file Then you can add OnClickListener to each of them, to perform

[android-developers] How to access the form data in all my Activity

2009-02-23 Thread guptha
hi group, In main activity i have a EditText where user enters his data ,how can, all my activity classes access that data Is there any session variables in android to store those values . thanks in advance guptha --~--~-~--~~~---~--~~ You received this message

[android-developers] Re: What's holding up UK paid app's

2009-02-23 Thread AusR
I just read my reply. Al, I didn't mean to sound rude. I guess the DSR may have something to do with it too. But it would be useful for TM to give us an update. On Feb 23, 1:48 pm, AusR austinjr...@gmail.com wrote: TMUK won't even acknowledge that an update is due.

[android-developers] Notepad provider context - Notepad application?

2009-02-23 Thread Shadakshari Hiremath
Hi Android, I referred notepad application sample code in Adnroid SDK to understand how to create new content provider. I want to know whether the content provider will run in the context of notepad application process or some other process. When the Notepad provider gets instantiated and by

[android-developers] Re: Is this group moderated?

2009-02-23 Thread Jean-Baptiste Queru
http://groups.google.com/group/android-developers/about Messages from new members are moderated JBQ On Sat, Feb 21, 2009 at 3:40 PM, neil.young neil.yo...@freenet.de wrote: Is this group moderated?? -- Jean-Baptiste M. JBQ Queru Android Engineer, Google.

[android-developers] Re: Building multiple app versions for the Market

2009-02-23 Thread Jay-andro
Hi Mattaku (or anyone else who can help) I am trying a similar approach. All my code (trial and full) is in a single codebase. A set of preferences (set differently in the two versions) determine whether the app behaves as a trial or as a full app. In order to create two apk's out of this, I put

[android-developers] (OT) Is the combination of Android Market and Google Checkout a joke?

2009-02-23 Thread Stoyan Damov
Hi all, I've got a customer who placed orders on 19th (Thursday) @ 9:46 PM PST, and he is still able to cancel his order (there's no green circle confirming the charge). I guess it's the *48* hours refund period + the fact that Google Checkout could care less about weekends and holidays. So if

[android-developers] Re: Is this group moderated?

2009-02-23 Thread Al Sutton
But I bet there are times when you wish everyone was moderated :). Al. Jean-Baptiste Queru wrote: http://groups.google.com/group/android-developers/about Messages from new members are moderated JBQ On Sat, Feb 21, 2009 at 3:40 PM, neil.young neil.yo...@freenet.de wrote: Is this

[android-developers] Re: Playing Hide and seek with menu items

2009-02-23 Thread Faber Fedor
I guess this one is too advanced for the beginner's group, so I'll ask it here: On Mon, Feb 16, 2009 at 9:20 PM, Faber Fedor faberfe...@gmail.com wrote: On my map menu I've got two menuitems: Map View and Satellite View. I'm sure you can figure out what they do. :-) I want to push Map View

[android-developers] Re: Playing Hide and seek with menu items

2009-02-23 Thread Mark Murphy
Faber Fedor wrote: I guess this one is too advanced for the beginner's group, so I'll ask it here: On Mon, Feb 16, 2009 at 9:20 PM, Faber Fedor faberfe...@gmail.com mailto:faberfe...@gmail.com wrote: On my map menu I've got two menuitems: Map View and Satellite View. I'm sure

[android-developers] (a bit OT): Google Checkout help

2009-02-23 Thread Stoyan Damov
Now I have to play a support person for Google Checkout too. I've got a customer who later cancelled his order and I got this message (via Google Checkout) from him a few minutes ago: Hello ..., John Doe has sent you the following message: Question regarding order #234230...: I requested a

[android-developers] Re: (a bit OT): Google Checkout help

2009-02-23 Thread Al Sutton
It sounds very much like google charged him when they shouldn't have (maybe the refund button has a bug :)), I would respond saying Google handle all payments for the application, please contact them for assistance as I am unable to control what gets charged to your bank account because there

[android-developers] Re: (a bit OT): Google Checkout help

2009-02-23 Thread Stoyan Damov
FWIW I found it: http://checkout.google.com/support/bin/answer.py?answer=99752 ... Locate Refund When the seller refunds your order, your Google Checkout account should reflect this change immediately. Cancelled orders are automatically refunded. To locate an expected refund, review our

[android-developers] Re: Amazon Web Services (AWS) from Android

2009-02-23 Thread Al Sutton
You don't need the whole AWS kit to do AWS things. You can use the HTTPClient libraries on the phone and a small amount of coding to write the stuff yourself. The AWS stuff we use in AndAppStore was written in-house and is less than 1500 lines and handles uploads, listing buckets, and

[android-developers] Re: (a bit OT): Google Checkout help

2009-02-23 Thread Al Sutton
As I read his email he's been actually charged and doesn't have a pending auth. Al. Stoyan Damov wrote: FWIW I found it: http://checkout.google.com/support/bin/answer.py?answer=99752 ... Locate Refund When the seller refunds your order, your Google Checkout account should reflect this

[android-developers] Re: (a bit OT): Google Checkout help

2009-02-23 Thread Stoyan Damov
Al, I see you're developing a sense of humor :) That's what happens to me these days - at first I was extremely annoyed, then I started laughing at the Market/Google checkout WTFs, I'm now about to either go nuts or pull out my app out of the Market and wait (on slideme, and andappstore) for

[android-developers] How to start the BroadcastReceiver

2009-02-23 Thread Birds
hi all, This is my code. public class MyThreadActivity extends Activity { /** Called when the activity is first created. */ @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState);

[android-developers] Re: How many projects are being canned because of Market TCs

2009-02-23 Thread Al Sutton
JP, The mobile market is a very different place now to what it was when some of these guys started work on their projects. With paid apps now out the door I expect many to be evaluating the time they spent and the return their getting, and I'm interested to see what happens. Android may have

[android-developers] Re: (a bit OT): Google Checkout help

2009-02-23 Thread Al Sutton
I think there are two camps in the Android world at the moment; those who can laugh at the problems, and those who are crying because of the effect it's had on them and their apps, I'm trying to stay in the former :) Al. Stoyan Damov wrote: Al, I see you're developing a sense of humor :)

[android-developers] Re: How to start the BroadcastReceiver

2009-02-23 Thread Marco Nelissen
In your code, you're calling registerReceiver() from your onClick(), meaning that from then on, your receiver will respond to broadcasts of the intent in question. You're never actually broadcasting that intent though. You probably want to call registerReceiver() from your onCreate(), and then

[android-developers] runtime window layout change

2009-02-23 Thread Dan Raaka
In an activity .. setting this.getWindow().setLayout(..) works fine, when forcing an window for an activity to be less than the screen size available. Can an activity resize the window at runtime? I am for looking for something like .. public boolean onTouchEvent(MotionEvent ev) { // change

[android-developers] Re: Paid Download Stats?

2009-02-23 Thread Steve Ingram
I have been wondering the same thing. I'm beginning to wonder if I have done something wrong that is preventing people from finding or being able to purchase my app. Any other insights would be greatly appreciated. When was your app released? What is the price of your app? How many have you

[android-developers] Re: (OT) Is the combination of Android Market and Google Checkout a joke?

2009-02-23 Thread Steve Barr
On 2/23/09, Stoyan Damov stoyan.da...@gmail.com wrote: So if I'm a customer, I could buy, say[1], a game on Friday, play all weekend and return it on Monday. Google has got to be joking. [1] Arcade games are more vulnerable to this WTF because you can literally play the entire game in

[android-developers] Re: Paid Download Stats?

2009-02-23 Thread Stoyan Damov
On Mon, Feb 23, 2009 at 6:24 PM, Steve Ingram steveing...@gmail.com wrote: When was your app released? 20 or 21st, I really can't remember. What is the price of your app? $5 How many have you sold so far? ~30 of which 10 have been charged (the 48 hour period + weekend has expired)

[android-developers] Re: (OT) Is the combination of Android Market and Google Checkout a joke?

2009-02-23 Thread Java Developer
So design games with replay value. Randomize things, periodically release downloadable levels, whatever. In my opinion, this is a completely bogus statement for most games/ applications developed on this platform (minus organizations such as EA Sports, etc.). The G1 is not a PS3. If I

[android-developers] Re: (OT) Is the combination of Android Market and Google Checkout a joke?

2009-02-23 Thread Stoyan Damov
On Mon, Feb 23, 2009 at 6:36 PM, Steve Barr barr8...@gmail.com wrote: On 2/23/09, Stoyan Damov stoyan.da...@gmail.com wrote:  So if I'm a customer, I could buy, say[1], a game on Friday, play all  weekend and return it on Monday.  Google has got to be joking.  [1] Arcade games are more

[android-developers] Re: (OT) Is the combination of Android Market and Google Checkout a joke?

2009-02-23 Thread Sundog
The answer can't be so write a different type of application. Certainly these are good strategies, but not suited to every kind of game; seeing that type of game disappear from the market is not a forward-thinking solution. Some people WANT these simple little games. On Feb 23, 9:36 am, Steve

[android-developers] Re: access to internal telephony

2009-02-23 Thread legerb
sorry for the delay. for any destination number (say 212333,4;444), it would be: destNum = destNum.replaceAll(#, ENCODE_POUND); if (destNum.endsWith(ENCODE_POUND)) //calls ending with # will fail { destNum= destNum.substring(0, destNum.length()-ENCODE_POUND.length ()); } Intent

[android-developers] Re: Local service: how to tell activity when done?

2009-02-23 Thread NameZero912
Thank you very much :) On 23 Feb., 13:52, Wouter woute...@gmail.com wrote: Hi, If you create the BroadcastReceiver as an inner class, you do have access in the broadcastreceiver to anything in your activity. So in you activity, do something like:         /**          * Receive messages

[android-developers] Discussion on localizing-android-apps-draft

2009-02-23 Thread WampBier
what's about the 1.2 version. I cannot set the locale. is there a way to test for example PL... --~--~-~--~~~---~--~~ 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] Re: Paid Download Stats?

2009-02-23 Thread Steve Ingram
Thanks for the info Stoyan. One theory I have is this: Those of us that had Copy Protection on at initial release missed the ever critical new app exposure. I don't have a phone, so I have been watching cyrket.com. I noticed that my app wasn't showing there at all when initially released. As

[android-developers] How to formate sdcard

2009-02-23 Thread android_fans
we are developing an phone for android. If an user have a sdcard in his phone,but he want to format the sdcard . How to do ,we can do this. Thanks, --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android

[android-developers] Threading help!!

2009-02-23 Thread Gray
I am developing an application on the Android Platform for my music service (axcid.org).. Haven't spent a huge amount of time in Java but could use a bit of help with this code: http://pastebin.com/m5300a4e6 bit of bad practice in there I know but I haven't spent a ton of time developing Java

[android-developers] Re: MenuItems and Typefaces

2009-02-23 Thread Kaloyan Donev
Make your own style by extending TypefaceSpan. And then use spannable text for your UI. On Mon, Feb 23, 2009 at 10:29 AM, Christian Martín Reinhold sabues...@gmail.com wrote: I am using the arabic font at the /assets/fonts folder and then used the locale of

[android-developers] Re: How to add transparent button to screen

2009-02-23 Thread brado32003
I've made $109 on this free sportsbetting site, and my friend currently has over $200!... You start with 10 cents and when you get to $20 you can cash out or keep going! Check it out... http://www.centsports.com/?opcode=289473 cindy ypu01...@yahoo.com wrote: I need to make

[android-developers] A question about the use of “ logcat

2009-02-23 Thread Eugene
Hi all, I find logcat call not display all the messages. If i use logcat , it can only show some messages from Java App and Service. If i use 'logcat -b radio, it only shows ril messages but without other messages from Java App and Service. Can sombody tell me whether it is possible to

[android-developers] Re: When will Android support Multiple PDP?

2009-02-23 Thread Long
I got same doubt. I see the cupcake code,Google still highlight //TODO:Increase this to match the max number of simultaneous PDP contexts we plan to support. It obviously Google hasn't supported the Mutiple APN (simultaneous PDP contexts), it's not meet to their announce roadmap. So far if we

[android-developers] Create graphic interfaces dinamically

2009-02-23 Thread Rafa
Hi every one, I trying to create an application similar to the notepad3 tutorial. The main difference is that I need to be able to create different note formats. Is possible to obtain an xml file from the web and use it in the creation of an android interface? I have researched about the

[android-developers] Re: help with my implementation of mediaplayer

2009-02-23 Thread Gray
From what I can understand you want to move the compiled file. In eclipse load your workspace project, look in the 'bin' folder and you will find the .APK file of your app. Transfer this to your device or platform and your golden. Hope I could help -gray On Feb 22, 7:38 pm, susanner

[android-developers] ADP1 with 1.1 holiday firmware can see paid apps only if SIM card is plugged - BUG or not ?

2009-02-23 Thread fdimeglio
Hi, I have just updated to 1.1 firmware for my ADP1 (see my post on android-discuss) and I found something very strange related to the Android Market. As far as I can see Market is listing paid apps only and only if a SIM card is plugged into my ADP1. As soon as I start with no SIM card, Market

[android-developers] Getting favicons in WebView

2009-02-23 Thread Sylvain Wallez
Hi all, I've been desperately trying to get favicons from web pages loaded in a WebView, even for pages that have a link rel=icon/ Things I've tried : - WebViewClient.onPageStarted() -- the icon parameter is always null - WebChromeClient.onReceivedIcon() -- never called -

[android-developers] API for validating app purchases

2009-02-23 Thread Alejandro
Having read a few threads about how users that have root access and can copy the .apk after installing the app, ask for a refund and install the app again, it occurred to me it would be nice to have an API that connects to the Market and validates if the current user has purchased the app. It

[android-developers] [android-developers]JNI run time error even I use same code and lib as Android source code.

2009-02-23 Thread Jerry Yang
Hi, all Now, I am trying to verify the JNI in Android java platform. I am using HTC G1 phone. I write a simple .c file to make a hello.so and a simple hello.java file to load the library. My story is like below: 1. create hellolib.c file and compiled to a hellolib.so create a folder in create a

[android-developers] Notepad Exercise 1 solution gives weird errors

2009-02-23 Thread mpxy
Hi everybody, I'm a beginner in development in Android. I've downloaded and begin going through Notepad Exercise, however, even when I try running the the solution of Exercise 1, I get the following 4 errors: Invalid character constant ._Notepadv1.java Notepadv1/src/com/android/

[android-developers] Re: Get application ID of my app on the market

2009-02-23 Thread Jay Freeman (saurik)
You are probably better off using the package name: market://search?q=pname:com.whatever.name That way the link will always point to the most recent version of your application and not need to be updated. -J (As I just joined this group I am going to get moderated when I send this message, so

[android-developers] Re: Where is a system-image for DP1?

2009-02-23 Thread Digital Mayhem
any update on this? --~--~-~--~~~---~--~~ 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] Create graphic interfaces dinamically

2009-02-23 Thread Rafa
Hi every one, I trying to create an application similar to the notepad3 tutorial. The main difference is that I need to be able to create different note formats. Is possible to obtain an xml file from the web and use it in the creation of an android interface? I have researched about the

[android-developers] Re: Is this group moderated?

2009-02-23 Thread Spongebob.Squarepants
Al Sutton schrieb: But I bet there are times when you wish everyone was moderated :). Al. Jean-Baptiste Queru wrote: http://groups.google.com/group/android-developers/about Messages from new members are moderated The point is: I'm one of the first members of this group. Joined

[android-developers] Re: Text-to-Speech for Android: Eyes-Free

2009-02-23 Thread Breezy
I can't get my emulator to play the sound of the TTS. I manually installed the APK and now I get a message (for only like 1/2 a second) that says the voice data is being downloaded and that I will have to restart my app. I do it and it says the same thing for a half second. Any suggestions?

[android-developers] Re: Could be better?!?!

2009-02-23 Thread brado32003
I've made $109 on this free sportsbetting site, and my friend currently has over $200!... You start with 10 cents and when you get to $20 you can cash out or keep going! Check it out... http://www.centsports.com/?opcode=289473 Arron arro...@gmail.com wrote: I believe when

[android-developers] Re: Could be better?!?!

2009-02-23 Thread brado32003
I've made $109 on this free sportsbetting site, and my friend currently has over $200!... You start with 10 cents and when you get to $20 you can cash out or keep going! Check it out... http://www.centsports.com/?opcode=289473 Java Developer supp...@cyntacks.com wrote: HA!

[android-developers] Re: When will Android support Multiple PDP?

2009-02-23 Thread Long
Test On Feb 22, 10:39 am, David Hu vistoda...@gmail.com wrote: Any more on Android? On Sun, Feb 22, 2009 at 6:53 AM, Tote tot...@gmail.com wrote: Well, according tohttp://www.3g4g.co.uk/Tutorial/ZG/zg_pdpit is not the same. Multiple APN means that you can use different connections at

[android-developers] Pass Business Search Results To Application

2009-02-23 Thread xmpptest...@googlemail.com
Hi, I was wondering whether it is possible to pass the results of a buisness search from the Maps application to my own application, as currently I can only search for locations and not businesses from my own mapView. Thanks --~--~-~--~~~---~--~~ You received

[android-developers] Re: When will Android support Multiple PDP?

2009-02-23 Thread Long
test On Feb 22, 10:39 am, David Hu vistoda...@gmail.com wrote: Any more on Android? On Sun, Feb 22, 2009 at 6:53 AM, Tote tot...@gmail.com wrote: Well, according tohttp://www.3g4g.co.uk/Tutorial/ZG/zg_pdpit is not the same. Multiple APN means that you can use different connections at

[android-developers] Re: When will Android support Multiple PDP?

2009-02-23 Thread Long
test On Feb 22, 10:39 am, David Hu vistoda...@gmail.com wrote: Any more on Android? On Sun, Feb 22, 2009 at 6:53 AM, Tote tot...@gmail.com wrote: Well, according tohttp://www.3g4g.co.uk/Tutorial/ZG/zg_pdpit is not the same. Multiple APN means that you can use different connections at

[android-developers] google gadgets in Android application

2009-02-23 Thread Aninda
Hi All, I want to browse through all the available google gadgets (available to configure for igoogle) through a custom written Android application, from where User will be able to download, install and view any gadgets. Please let me know if there is any API to fetch and show the google gadgets

[android-developers] Re: When will Android support Multiple PDP?

2009-02-23 Thread Long
I got same doubt. I see the cupcake code,Google still highlight //TODO:Increase this to match the max number of simultaneous PDP contexts we plan to support. It obviously Google hasn't supported the Mutiple APN (simultaneous PDP contexts), it's not meet to their announce roadmap. So far if we

[android-developers] getting error in calling MakeDefaultPhones() in my application

2009-02-23 Thread shweta
Hi, I am calling MakeDefaultPhones() in my OnCreate in my application which will enable and disable data calls.when i start the appliaction I get the following error on emulator. 02-23 10:56:54.349: ERROR/ServiceManager(18): add_service ('simphonebook',0x2a) uid=10033 - PERMISSION DENIED 02-23

[android-developers] Re: When will Android support Multiple PDP?

2009-02-23 Thread Long
On Feb 22, 10:39 am, David Hu vistoda...@gmail.com wrote: Any more on Android? On Sun, Feb 22, 2009 at 6:53 AM, Tote tot...@gmail.com wrote: Well, according tohttp://www.3g4g.co.uk/Tutorial/ZG/zg_pdpit is not the same. Multiple APN means that you can use different connections at the

[android-developers] Google G2 / HTC Magic for developers?

2009-02-23 Thread Daniel
Hi, I've seen the unlocked G1 offer for developers (named Android Dev Phone 1, instead of G1): http://developer.android.com/guide/developing/device.html How do I order the HTC Magic (G2) through this program? Also, what are the warranty terms for the developer handset - does a European

[android-developers] Re: When will Android support Multiple PDP?

2009-02-23 Thread Long
test On Feb 22, 6:53 am, Tote tot...@gmail.com wrote: Well, according tohttp://www.3g4g.co.uk/Tutorial/ZG/zg_pdpit is not the same. MultipleAPNmeans that you can use different connections at the same time. Whereas multiple PDP contexts means that you can use the same connection with

[android-developers] Need help with my account

2009-02-23 Thread spongebob.squarepants
Hi, probably Romain Guy would be so kind to help me out here? While trying to post this morning I got a mail, that my account was banned from this forum... I have absolutely no clue, why. What can I do with this? Who is able to help me to return to my previously used account? Kind regards

[android-developers] google gadgets in Android application

2009-02-23 Thread Aninda
Hi All, I want to browse through all the available google gadgets (available to configure for igoogle) through a custom written Android application, from where User will be able to download, install and view any gadgets. Please let me know if there is any API to fetch and show the google gadgets

[android-developers] test

2009-02-23 Thread aini3001 aini3001
just test --~--~-~--~~~---~--~~ 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] Please Read! Advice needed!

2009-02-23 Thread anthony.nun...@gmail.com
Ok this is gonna be the most awkward post I've ever put anywhere but I need some help or I'm going to probably give up on this dream. I know that its unfair to ask this question because I could just do this on my own but I feel so excited about this that I need advice now or I'm not gonna get

[android-developers] Re: Does Android support APDUConnection as known from JSR 177?

2009-02-23 Thread spongebob.squarepants
Hi Anders, many thanks for answering. I don't know what happened, but over the weekend I seemed to blow my rather old account Neil.Young, so it is BANNED now (I did never appear such things :() and I don't know, why. What went wrong with my subscription? So I'm forced to use this rediculous

[android-developers] Re: [android-developers]JNI run time error even I use same code and lib as Android source code.

2009-02-23 Thread Marco Nelissen
On Sun, Feb 22, 2009 at 10:23 PM, Jerry Yang 1999bige...@gmail.com wrote: (...) 3. push the .apk to the phone and run from eclips always a run time error like:the application hello.android has stopped unexpectedly, pla try again What does it say in the system log?

[android-developers] Re: Threading help!!

2009-02-23 Thread Marco Nelissen
Have a look at Activity.runOnUiThread() On Sun, Feb 22, 2009 at 5:10 PM, Gray graham.stachow...@gmail.com wrote: I am developing an application on the Android Platform for my music service (axcid.org).. Haven't spent a huge amount of time in Java but could use a bit of help with this code:

[android-developers] Re: Could be better?!?!

2009-02-23 Thread somatt
Well, IMHO charging for a pinger, even $1, is ridiculous. -Matt On Feb 22, 2:10 pm, Java Developer supp...@cyntacks.com wrote: HA! If I didn't laugh at this I would cry. An individual bought our second application today, a simple app which allows the user to Ping and search Whois

[android-developers] Re: Need help with my account

2009-02-23 Thread Marco Nelissen
On Mon, Feb 23, 2009 at 5:06 AM, spongebob.squarepants spongebob.squarepa...@freenet.de wrote: Hi, probably Romain Guy would be so kind to help me out here? While trying to post this morning I got a mail, that my account was banned from this forum... I have absolutely no clue, why. My guess

[android-developers] Re: Building multiple app versions for the Market

2009-02-23 Thread Mattaku Betsujin
I use eclipse to build apptrial, and then use 'make' to build appcore (You could use 'ant' as well). When using make, it's more flexible and I can force the R class to be generated in the appcore package. On Mon, Feb 23, 2009 at 6:52 AM, Jay-andro jayan...@gmail.com wrote: Hi Mattaku (or

[android-developers] Re: google gadgets in Android application

2009-02-23 Thread Mark Murphy
Aninda wrote: I want to browse through all the available google gadgets (available to configure for igoogle) through a custom written Android application, from where User will be able to download, install and view any gadgets. Please let me know if there is any API to fetch and show the

[android-developers] Create graphic interfaces dinamically

2009-02-23 Thread Rafa
Hi every one, I trying to create an application similar to the notepad3 tutorial. The main difference is that I need to be able to create different note formats. Is possible to obtain an xml file from the web and use it in the creation of an android interface? I have researched about the

[android-developers] Re: Where is a system-image for DP1?

2009-02-23 Thread Jean-Baptiste Queru
I wish I had an update for you, but unfortunately there isn't one. JBQ On Sun, Feb 22, 2009 at 3:59 PM, Digital Mayhem steve.lawre...@digital-mayhem.com wrote: any update on this? -- Jean-Baptiste M. JBQ Queru Android Engineer, Google.

[android-developers] TIE (Track Incomes and Expenses) - Android application

2009-02-23 Thread Juan David Trujillo C.
Hi guys! I would like to share with you a project I´ve worked on for the last couple of months with a friend (Estiven Rpo), called TIE your money. TIE (Track Incomes and Expenses) helps you control money, making personal finances EASY and FUN: -GPS to track incomes or expenses -Customizable

[android-developers] Re: (OT) Is the combination of Android Market and Google Checkout a joke?

2009-02-23 Thread Steve Barr
On 2/23/09, Sundog sunns...@gmail.com wrote: The answer can't be so write a different type of application. Certainly these are good strategies, but not suited to every kind of game; seeing that type of game disappear from the market is not a forward-thinking solution. Some people WANT

[android-developers] Re: When will Android support Multiple PDP?

2009-02-23 Thread Andrew Stadler
Henry Long- Please don't send repeated test messages to this mailing list. We received all of them. You are creating unnecessary traffic for many subscribers. On Mon, Feb 23, 2009 at 3:12 AM, Long henry.l...@qisda.com.tw wrote: test On Feb 22, 6:53 am, Tote tot...@gmail.com wrote:

[android-developers] Re: another round of emulator DNS problems

2009-02-23 Thread ndefo arnauld
hi, i am a student and developpe my school projet with android.I should use the wifi to send my data to a server.But my android emulator don't start a wifi.I don't know why.i use the emulator android for the release 1.1. Can you help me to activate wifi connection into emulator android?I have

[android-developers] Re: Current Percentage of Refunds on Android Market?

2009-02-23 Thread Streets Of Boston
For me, maker of The Gube, a $0.99 app, the cancellation rate is about 33%. It has been hovering between 25% and 35%. But my app has been in the market for only a few days. So, i don't know how reliable this statistic is. :-) On Feb 22, 8:04 pm, Shane Isbell shane.isb...@gmail.com wrote: What

[android-developers] Re: A question about the use of “logcat

2009-02-23 Thread Dianne Hackborn
Just run them both: logcat logcat -b radio The main log and radio log are very deliberately in separate buffers. On Mon, Feb 23, 2009 at 7:43 AM, Eugene eugene...@gmail.com wrote: Hi all, I find logcat call not display all the messages. If i use logcat , it can only show some

[android-developers] Re: Create graphic interfaces dinamically

2009-02-23 Thread Wouter Lagerweij
The LayoutInflator docs ( http://developer.android.com/reference/android/view/LayoutInflater.html) are very explicitly saying this is not possible. You could possibly do something by getting 'install' permissions for your app, and installing additional .apk files containing extra layouts. I've

  1   2   3   >