[android-developers] Re: Is anyone's active install % dropping like a rock lately?

2010-09-21 Thread ko5tik
My downloads stagnate and go sometimes back one count ;) I think this is a policy to keep my app from going over 1 ( it was at 9975, dropped to 8700 one day, climbed back to 9975 and stagnates there despite known downloads throigh recommender function) On Aug 26, 4:47 pm, Fabrizio Giudici

[android-developers] How to get the ListView item as web

2010-09-21 Thread RKJ (Android developer)
Hi All, I've list view item as a object, I want to fetch item details as web to show. --RKJ -- 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

[android-developers] How to access contact and account database

2010-09-21 Thread adhavan jeyachandran
hi, how can i access the contact and account manager with the help of sqlite3 code? can u please explain me about contact application? -- ADHAVAN.J -- 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] Apps running cuncurrently

2010-09-21 Thread parag
hi folks, i have a situation, i want to know that following, suppose I have opened 9 apps, i want to open the 10th one, The previous opened apps are in background, if there is less memory available, will some of the earlier opened app be closed without notification or the state will be saved ,

[android-developers] how to send data to server while recording

2010-09-21 Thread cindy
Hi all, My application needs to record audio and send audio data to server while recording. If User stops audio input, we will stop sending. How could I implement such feature in Android? Thanks! April -- You received this message because you are subscribed to the Google Groups Android

[android-developers] Download Files via Android Browser an https not possible

2010-09-21 Thread Markus
Hello! I want to try to download some file about the android browser. But every time I start the download via https the download manager show only the download with the message Waiting for data I tried different host, but the problem ist always the same. I used a Milestone with 2.1 and a

[android-developers] Re: ExpandableListView question

2010-09-21 Thread dashman
thanks for the response. in my getChildView() method of my adapter, i have: View v; if (convertView == null) { v = newChildView(isLastChild, parent); } else { v = convertView; } 1. i would imagine

[android-developers] Using a different layout depending on parent dimensions

2010-09-21 Thread Mark Carter
Imagine a View filling the width and the top half of the screen. The height varies depending on whether the IME is shown or not (and whether the screen is in landscape/portrait mode). The IME itself has variable height. Now imagine that View has a child LinearLayout (vertical) showing a couple of

[android-developers] How to set permission in content providers

2010-09-21 Thread Sohan badaya
Hi All, I have a doubt regarding content provider.My doubt is I create a app1 that creates ContentProvider and in second application(app2) i am using app1's contentprovider methods(like insert, update etc). It's working fine but i want to set some permissions in app1, so that if any other app

[android-developers] Re: Getting the right highlighting behavior in a ListView

2010-09-21 Thread jamesc
Are you asking the same question that I posed (there's an answer from Mark) here?: http://stackoverflow.com/questions/3599234/recommendations-for-a-permanent-selector-in-listview On Sep 20, 7:44 pm, Bret Foreman bret.fore...@gmail.com wrote: This could just as well be a big list of radio

[android-developers] Re: How to install the files in the file system on android phone (samsung galaxy 5)

2010-09-21 Thread sameer kamble
Dear Sir, Thanks for your reply. 1) Does this means that if i create the folder raw inside res folder , put some files in it and in my program give the path to open and read a file as /data/data/mypackage/filename. Will it read the file from raw folder at run time on the device. 2) I mean to

[android-developers] Android market publishing from India

2010-09-21 Thread Sudeep Jha
Hi All, I have developed a mobile banking product application and want to publish it to Android Market as a free app. I am unable to create my *developer profile *on android market publish. I am always getting error as wrong phone number entered .I think it

[android-developers] Re: Recycle Message object

2010-09-21 Thread String
On Sep 21, 1:19 am, Dianne Hackborn hack...@android.com wrote: And yes: the platform does this for you when done dispatching a message, so when you handler, you no longer own the message and should not touch that object any more. That point isn't entirely clear in the docs, but it's

[android-developers] Video Streaming in Android Emulator Possible ?.

2010-09-21 Thread Ajmer Singh
Hi All I am new to android, I have a simple question *Is Video Streaming possible in Android Emulator*,I am using the example in Android SDK but it give me message *Sorry Can't play this Video*.I am using Youtube Video to stream in android Emulator. Pls respond. -- Thanks and Regards Ajmer

[android-developers] Re: how to send data to server while recording

2010-09-21 Thread ko5tik
On Sep 21, 8:13 am, cindy ypu01...@yahoo.com wrote: Hi all, My application needs to record audio and send audio data to server while recording. If User stops audio input, we will stop sending. Give media recorder file descriptor of server socket instead a real file. -- You received this

[android-developers] what is wrong with AppWidgetManager.getAppWidgetIds()?

2010-09-21 Thread Jerome Deng
Hi guys, I have searched many topics about AppWidgetManager.getAppWidgetIds(). But I don't get any compellent answers. In my code, I first get all widget ids by AppWidgetManager.getAppWidgetIds(provider), and then do a for loop as below: for (int id : ids) {...} However, I see the for loop never

Re: [android-developers] Re: projecting the Android screen

2010-09-21 Thread Kostya Vasilyev
This limitation affects applications trying to make screenshots of one another. DDMS is another story, assuming the user doesn't enable adb and plug in their phone by accident. -- Kostya 21.09.2010 1:54, DanH пишет: It was said elsewhere that there's no way in Android to get a full screen

[android-developers] Re: How to set permission in content providers

2010-09-21 Thread Jerome Deng
Try to add below lines to your app2's manifest file: uses-permission android:name=android.permission.permRead / uses-permission android:name=android.permission.permWrite / On Sep 21, 2:57 pm, Sohan badaya sohan.bad...@gmail.com wrote: Hi All, I have a doubt regarding content

Re: [android-developers] Video Streaming in Android Emulator Possible ?.

2010-09-21 Thread Ramaraju naga
It is possible...using Mediaplayer classs. see this code MediaPlayer video; setContentView(R.layout.main); VideoView video = (VideoView) findViewById(R.id.video); // Load and start the movie video.setVideoPath(/data/samplevideo.3gp ); video.start(); main layout file ?xml version=1.0

[android-developers] Re: Apps running cuncurrently

2010-09-21 Thread Jerome Deng
If there is less memory available, the resource used by the paused apps will be recycled by Davilk VM. When you open the first app again, it will be relaunched. But not all previously opened apps must restarted, as they may be still in paused state. On Sep 21, 2:10 pm, parag

[android-developers] WebView native crash when overriding WebChromeClient.onCreateWindow()

2010-09-21 Thread Omer Gilad
Hello, I'm using a webview inside my application in order to display a web interface. One part of the web interface is a javascript that opens a popup. I'm currently attempting to use onCreateWindow exactly as documented, and after the call finishes (And a new window is supposed to be created),

[android-developers] Horizontal scroll with paging like iPad home screen

2010-09-21 Thread Paolo
I have to implement this kind of feature for a custom home screen in Android. I've noticed that it's impossible to use GridView with an HorizontalScrollView... so this is a big problem... is there any other solution? I thought that i would have to do a sort of my DataGridView, with its own

[android-developers] how to block buttons with a layout above all?

2010-09-21 Thread Marco Alexander Schmitz
hi, I'd like to add a transparent panel (relativelayout) with fill_parent in width and height. I want to use this glasspane in order to block all buttons underneath. Unfortunately I cannot find the right setter / xml attribute for this. These wont work: .setEnabled(false);

Re: [android-developers] Video Streaming in Android Emulator Possible ?.

2010-09-21 Thread Ajmer singh
I want to stream a video from Network Like From youtube.com. Is that possible in android emulator?. On Tue, Sep 21, 2010 at 1:34 PM, Ramaraju naga v.nagaramar...@gmail.comwrote: It is possible...using Mediaplayer classs. see this code MediaPlayer video; setContentView(R.layout.main);

[android-developers] Re: Nokia inviting Developers to become an Ovi store publisher.

2010-09-21 Thread Kumar Bibek
Definitely a SPAM... On Sep 20, 8:23 pm, TreKing treking...@gmail.com wrote: On Mon, Sep 20, 2010 at 2:27 AM, James Baker james.baker...@gmail.comwrote: If u are a developer nd dream it big then grab this opportunity today. I think this says it all. If u try it out post back nd let us

[android-developers] Re: Any way to display a TIFF image?

2010-09-21 Thread Andreas
You should use PNG with lossless compression if you are aiming for Quality. The Supported Core Media Formats can be found here: http://developer.android.com/guide/appendix/media-formats.html hope this helps On 20 Sep., 21:18, paladin quoti...@gmail.com wrote: I'm thinking that

[android-developers] Re: Apps running cuncurrently

2010-09-21 Thread parag
Hi Jerome, Thanks for th information, so does that mean that, there is a possibility that some apps will be closed, without notifying the user? Thanks in advance On Sep 21, 1:13 pm, Jerome Deng deng.jer...@gmail.com wrote: If there is less memory available, the resource used by the paused

[android-developers] Re: appbucket: all apps for $9.99 per year, are we just going to watch?

2010-09-21 Thread String
On Sep 19, 11:37 pm, mot12 martin.hu...@gmail.com wrote: - allow developers to make a comment in the market by allowing them to purchase their own apps: appbucket is a website by thieves, the developers get screwed and you will get screwed. Or something like this. I really liked that

Re: [android-developers] what is wrong with AppWidgetManager.getAppWidgetIds()?

2010-09-21 Thread Kostya Vasilyev
Make sure that ComponentName you use to get AppWidgetManager matches the widget provider in the manifest. If it doesn't, you'll get an empty list (ids.length = 0, the loop won't execute). Not sure what you mean by which widget coming. -- Kostya Vasilyev -- http://kmansoft.wordpress.com

Re: [android-developers] how to block buttons with a layout above all?

2010-09-21 Thread Kostya Vasilyev
Try setting on click handler for this view. -- Kostya Vasilyev -- http://kmansoft.wordpress.com 21.09.2010 12:40 пользователь Marco Alexander Schmitz marco.alexander.schm...@googlemail.com написал: hi, I'd like to add a transparent panel (relativelayout) with fill_parent in width and height.

Re: [android-developers] Re: how to send data to server while recording

2010-09-21 Thread Kostya Vasilyev
Might want to do base64 encoding, too (if the network protocol is HTTP). -- Kostya Vasilyev -- http://kmansoft.wordpress.com 21.09.2010 11:42 пользователь ko5tik kpriblo...@yahoo.com написал: On Sep 21, 8:13 am, cindy ypu01...@yahoo.com wrote: Hi all, My application needs to record... Give

[android-developers] How to compile Android Launcher source code?

2010-09-21 Thread Paolo
I have just donwload the source code of the Android default Launcher here: http://android.git.kernel.org/?p=platform/packages/apps/Launcher.git;a=summary But when I import the project, i can't compile it because there is a lot of errors. Many of this are unresolved name, package, class and

Re: [android-developers] Re: projecting the Android screen

2010-09-21 Thread Mark Murphy
On Mon, Sep 20, 2010 at 6:15 PM, joebowbeer joe.bowb...@gmail.com wrote: I don't think the Moto Droid does this, but if you have one of the Samsung Galaxy S handsets (Vibrant, Captivate, etc) you can get composite video out (and stereo audio) using a camcorder cable.  The HTC Evo has HDMI out.

[android-developers] install apk files programatically

2010-09-21 Thread honey
Hello i have built vista shell for the android phone. now i want to install the apk programatically.and add their relevant icons to the start menu and the desktop of my activity:any ideass if some one has done some work on it. -- You received this message because you are subscribed to

[android-developers] Re: How to compile Android Launcher source code?

2010-09-21 Thread mani
Hi you cannot compile the Launcher code in eclipse with SDK. Certain API's are private not exposed to the public SDK. Ex. import android.renderscript.* But there are certain ways to compile AOSP in eclipse. Please go through this link.

[android-developers] android spoofing

2010-09-21 Thread Rosebeat
Does anyone know how to do android spoofing? -- 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] Calling startActivity() from outside of an Activity context requires the FLAG_ACTIVITY_NEW_TASK flag ?

2010-09-21 Thread mani
Hi all, I tried to create a edittextbox, and button next to it, in the status bar. !! I created it and tried to launch the browser activity, when somebody enters a URL in the textbox click that button. I get runtime exception as below.Can anyone please help what is the issue with this

[android-developers] Re: appbucket: all apps for $9.99 per year, are we just going to watch?

2010-09-21 Thread Pent
But here's the interesting part: As of this morning, the AppBucket comment is GONE from my app's Market page. Don't know if Google removed it - is it still there for the rest of your apps? Or if the AppBucket scum removed it themselves (seems unlikely). But one way or the other, it's gone

[android-developers] What phone to develop on?

2010-09-21 Thread tarek attia
Hi all, I want to purchase an Android phone for development ? what do you recommend ? Is there any mobile more updated than Nexus one ? -- tarek -- 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] can i create FOLDER for some message ....

2010-09-21 Thread A N K ! T
am creating a sms application in which am trying to move some msg according to users choice to predefined Folderbut am not getting any way to do this task.. please some one guide me. -- A N K ! T.. -- You received this message because you are subscribed to the Google Groups

Re: [android-developers] Calling startActivity() from outside of an Activity context requires the FLAG_ACTIVITY_NEW_TASK flag ?

2010-09-21 Thread A N K ! T
have u try to put this line after defining intent. browserIntent .setFlag(Intent.FLAG_ACTIVITY_NEW_TASK); On Tue, Sep 21, 2010 at 4:39 PM, mani smanikanda...@gmail.com wrote: Hi all, I tried to create a edittextbox, and button next to it, in the status bar. !! I created it and tried to

Re: [android-developers] Re: How to set permission in content providers

2010-09-21 Thread Sohan badaya
Hi Jerome, I tried your solution, but still it's not working. I am getting same exception. ERROR/AndroidRuntime(18573): java.lang.RuntimeException: Unable to start activity ComponentInfo{com.test.access/com.test.access.TestDatabaseApp}: java.lang.SecurityException: Permission Denial: writing

[android-developers] Re: Calling startActivity() from outside of an Activity context requires the FLAG_ACTIVITY_NEW_TASK flag ?

2010-09-21 Thread mani
Yes i tried now.!! It dint work...:( - mani On Sep 21, 7:36 pm, A N K ! T ankit.awasth...@gmail.com wrote: have u try to put this line after defining intent.  browserIntent .setFlag(Intent.FLAG_ACTIVITY_NEW_TASK); On Tue, Sep 21, 2010 at 4:39 PM, mani smanikanda...@gmail.com wrote: Hi

[android-developers] Re: android spoofing

2010-09-21 Thread String
On Sep 21, 12:05 pm, Rosebeat rosebeat2...@gmail.com wrote: Does anyone know how to do android spoofing? What is it you want to spoof? String -- 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: What phone to develop on?

2010-09-21 Thread James Elsey
Where are you? If you are in the UK then you might be interested in this article that I found on Google tech news : http://channel.hexus.net/content/item.php?item=26545 A £99 Pay as you go android 2.1 handset, I'd call that a bargain On Sep 21, 12:23 pm, tarek attia tarek.m.at...@gmail.com

[android-developers] Re: Calling startActivity() from outside of an Activity context requires the FLAG_ACTIVITY_NEW_TASK flag ?

2010-09-21 Thread mani
I even tried to do this.getApplicationContext().startActivity() -- but this anyway not possible coz am not under a Activity instance. So how should i tackle this ?? Anyone who has worked on statusbar...could help me .. On Sep 21, 7:36 pm, A N K ! T ankit.awasth...@gmail.com wrote: have u try

[android-developers] Android devices supporting OpenGL ES 2.0 (at least through NDK) as of September 2010

2010-09-21 Thread RS
Is there some place where I can find a list of android devices with OpenGL ES 2.0 (at least through NDK for 2.x devices)? Or could some developer with any of these comment on how OpenGL ES 2.0 worked on their device? - Nexus One - running SDK 2.1 (Works through NDK) - Nexus One - running SDK

Re: [android-developers] Re: Calling startActivity() from outside of an Activity context requires the FLAG_ACTIVITY_NEW_TASK flag ?

2010-09-21 Thread A N K ! T
then try to use webview On Tue, Sep 21, 2010 at 5:18 PM, mani smanikanda...@gmail.com wrote: Yes i tried now.!! It dint work...:( - mani On Sep 21, 7:36 pm, A N K ! T ankit.awasth...@gmail.com wrote: have u try to put this line after defining intent. browserIntent

Re: [android-developers] Android devices supporting OpenGL ES 2.0 (at least through NDK) as of September 2010

2010-09-21 Thread nagaraj attimani
Samsung Galaxy supports OpenGL ES 2.0 On Tue, Sep 21, 2010 at 5:30 PM, RS rajeshs...@gmail.com wrote: Is there some place where I can find a list of android devices with OpenGL ES 2.0 (at least through NDK for 2.x devices)? Or could some developer with any of these comment on how OpenGL ES

[android-developers] Re: ExpandableListView question

2010-09-21 Thread Brion Emde
I'm interested in this discussion also. I had this exact problem and put it on hold for a while with a workaround. I decided that I would probably need a child view that is a superset of all the desired group views and that I would set the visibility of the child view components as I determined

[android-developers] Re: android spoofing

2010-09-21 Thread DanH
You know, like Shields and Yarnell. On Sep 21, 6:50 am, String sterling.ud...@googlemail.com wrote: On Sep 21, 12:05 pm, Rosebeat rosebeat2...@gmail.com wrote: Does anyone know how to do android spoofing? What is it you want to spoof? String -- You received this message because you are

[android-developers] Re: Android Market Licensing Service

2010-09-21 Thread gcstang
I figured, not a problem I just had to ask. Thank you anyways On Sep 20, 2:38 am, String sterling.ud...@googlemail.com wrote: On Sep 18, 6:46 pm, gcstang gcst...@gmail.com wrote: Are there any examples of how you implemented it that you're willing to share? Probably not, I'm afraid.

[android-developers] Re: How to set permission in content providers

2010-09-21 Thread Brion Emde
I believe that both applications will need to declare that they use those permissions, in their uses-permission / part of the manifest. My app declares its own permissions for read/write in the ContentProvider and the permissions appear in three places: the declaration of the permissions; the

Re: [android-developers] Re: What phone to develop on?

2010-09-21 Thread tarek attia
On Tue, Sep 21, 2010 at 2:51 PM, James Elsey james.el...@gmail.com wrote: Where are you? I'll purchase from the USA ,but will use it in the middle east.So I need it unblocked as well. If you are in the UK then you might be interested in this article that I found on Google tech news :

[android-developers] Re: Apps running cuncurrently

2010-09-21 Thread Brion Emde
Yes, that is exactly what it means. From the user's perspective, nothing has happened: when they come back to app #1, it has been restarted, has restored its state and things look exactly like they did when the user was there before. If you want to notify the user somehow, you would do that in

Re: [android-developers] Re: What phone to develop on?

2010-09-21 Thread Ahmad Musa
hi all : I need to know if blocking on android is by software or hardware. thanx in advance. On Tue, Sep 21, 2010 at 2:29 PM, tarek attia tarek.m.at...@gmail.comwrote: On Tue, Sep 21, 2010 at 2:51 PM, James Elsey james.el...@gmail.comwrote: Where are you? I'll purchase from the USA ,but

[android-developers] Re: android spoofing

2010-09-21 Thread Chris Stratton
Mylar space blanket duct tape and silver face paint. On Sep 21, 7:05 am, Rosebeat rosebeat2...@gmail.com wrote: Does anyone know how to do android spoofing? -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email

[android-developers] Re: How can I track down a crash in a .so without a stack trace?

2010-09-21 Thread andrew_esh
That is a stack trace, after the SIGSEGV (Signal, Segment Violation) message, below where is says stack:. Do an 'objdump -x' on the .so (/ system/lib/egl/ libGLES_qcom.so), and start matching up the addresses with code. It should lead you to the specific routine that the code crashed in. The first

[android-developers] Android market publishing from India

2010-09-21 Thread Sudeep
Hi All, I have developed a mobile banking product application and want to publish it to Android Market as a free app. I am unable to create my developer profile on android market publish. I am always getting error as wrong phone number entered .I think it is

[android-developers] Re: Apps running cuncurrently

2010-09-21 Thread Chris Stratton
How well they restore state depends on how the app author has handled the onPause which is called when the app first went into the background and became fair game for killing. Typically for example an email your were editing will now be a saved draft, a moves-based game will be exactly as before,

[android-developers] Re: How can I track down a crash in a .so without a stack trace?

2010-09-21 Thread Chris Stratton
Yes, however note that you probably need to use the arm version of objdump from ndk or aosp build system, and you need to run it on the library file present on the user's device, as the addresses may well be different than in the file from another build. On Sep 21, 8:47 am, andrew_esh

[android-developers] Re: Android devices supporting OpenGL ES 2.0 (at least through NDK) as of September 2010

2010-09-21 Thread RS
Thanks, hope that would be the same on the Samsung tablet too. I'd be very happy to hear from anybody with any other device even if it doesn't support OpenGL ES 2.0, especially if you could post the supported extensions. Thanks again. RS On Sep 21, 1:05 pm, nagaraj attimani

Re: [android-developers] Froyo Camera application process dies when Lock screen happens

2010-09-21 Thread nagaraj attimani
there seems to be issue with opengl. I faced similar issue and noticed it is due opengl On Thu, Sep 16, 2010 at 3:33 PM, Naresh Purre android...@gmail.com wrote: Hi All, Camera application process dies and restarts again when device is Locked/End Call Key is clicked. Steps to reproduce:

Re: [android-developers] Re: Camera Preview Zoom in Android

2010-09-21 Thread nagaraj attimani
can you explain..whcih device are you using to test this ? are you working on your own platform.. On Thu, Sep 16, 2010 at 9:10 PM, uday uday.pic...@gmail.com wrote: In Android i think they have already implemented this.. because with out implementing this in android HAL how they will provide

Re: [android-developers] Re: How to set permission in content providers

2010-09-21 Thread Sohan badaya
Hi Brion, You are right. It's working in other application also. Thanks a lot. Thanks and Regards, Sohan Badaya On Tue, Sep 21, 2010 at 5:59 PM, Brion Emde brione2...@gmail.com wrote: I believe that both applications will need to declare that they use those permissions, in their

Re: [android-developers] Re: How can I track down a crash in a .so without a stack trace?

2010-09-21 Thread nagaraj attimani
from the stack trace..it can notice the carsh happend in #00 pc 0003ec30 /system/lib/egl/libGLES_qcom.so u can use addr2line tool in linux to find the where crash occured in the .so. On Tue, Sep 21, 2010 at 6:50 PM, Chris Stratton cs07...@gmail.com wrote: Yes, however note that you probably

[android-developers] Is API Level 6 gone?

2010-09-21 Thread Leigh McRae
I have updated my tools to revision 7 and now I can't do a build as it says the API level is obsolete. I can understand warning but it won't build at all. I am using android.bat to generate a build.xml for release versions. So the build.xml gets made from scratch each time. If I switch to

Re: [android-developers] Re: How can I track down a crash in a .so without a stack trace?

2010-09-21 Thread Leigh McRae
Thanks but it's 2.0.1. Tank Recon 3D On 9/21/2010 12:27 AM, Nightwolf wrote: What is your game? I could try it on G1 with 1.6. On Sep 20, 9:42 pm, Leigh McRaeleigh.mc...@lonedwarfgames.com wrote: My game is crashing on the HTC Hero and I have managed to get a user to send me their log. I

Re: [android-developers] Re: Apps running cuncurrently

2010-09-21 Thread Kostya Vasilyev
Parag, Yes, Android can shut down processes if there is not enough memory. I think you should review these sections from Android documentation: http://developer.android.com/guide/topics/fundamentals.html#procthread http://developer.android.com/guide/topics/fundamentals.html#lcycles --

Re: [android-developers] Re: How can I track down a crash in a .so without a stack trace?

2010-09-21 Thread Leigh McRae
Thank you all for the very detailed responses. The game is all Java and the .so isn't mine so I would have to have the source for the driver I am guessing. Also I can't get it to crash on my Milestone or the simulator. Simulator doesn't even run 1fps so I had to leave it running for a few

[android-developers] creating avd from command line with keyboard support

2010-09-21 Thread jadav
How can i create avd from command line with keyboard support? (I was able to create avd from commandline using: android create avd ... but I dont know how to enable keyboard support into this) even android documentaion/help doesn't any thing about this. -Jadav -- You received this message

[android-developers] Re: Anyone else ever submitted to Motorola Shop4Apps? I did and so far it seems dismal - share your experience?

2010-09-21 Thread niko20
But I don't see any advantage to localization in China. Over there even schoolchildren are taught how to read and speak English. -niko On Sep 20, 11:05 pm, Bret Foreman bret.fore...@gmail.com wrote: The real point of Shop4Apps is to sell localization services and then sell the localized apps

[android-developers] Re: Is it worth writing a ContentProvider and using CursorAdapter for this case?

2010-09-21 Thread Samuh
:shameless bump: -- 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

Re: [android-developers] Re: Is it worth writing a ContentProvider and using CursorAdapter for this case?

2010-09-21 Thread Kostya Vasilyev
Yes 21.09.2010 18:28, Samuh пишет: :shameless bump: -- Kostya Vasilyev -- WiFi Manager + pretty widget -- http://kmansoft.wordpress.com -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to

Re: [android-developers] Re: Anyone else ever submitted to Motorola Shop4Apps? I did and so far it seems dismal - share your experience?

2010-09-21 Thread Kostya Vasilyev
I would guess more than a few of developers here have been contacted by a Chinese company called NetDragon, offering to localize their Android application to Chinese. So was I - and went ahead and had mine localized. The process was quite painless - I sent them my strings.xml, and got two in

[android-developers] Re: Anyone else ever submitted to Motorola Shop4Apps? I did and so far it seems dismal - share your experience?

2010-09-21 Thread Bret Foreman
I didn't say it was an advantage, only that it was the point of Shop4Apps. I suppose there may be some apps that will sell better when localized. If you don't think your app is in that category, then the only other advantage of Shop4Apps is marketing/sales in some countries where the Marketplace

[android-developers] Re: Apps running cuncurrently

2010-09-21 Thread Brion Emde
Well, as you'll read in the docs, it's during onSaveInstanceState() that you save the state that will be restored when your app is restarted due being killed by the OS. The saving you do in onPause() is the normal kind of saving you do; saving the user's inputs and the like. The kind of saving

Re: [android-developers] Re: Android Market the Google I/O 2010 features

2010-09-21 Thread Fabrizio Giudici
On 9/20/10 15:05 , Maps.Huge.Info (Maps API Guru) wrote: I like The 32nd of Never better. It almost sounds like a real date. February 29th, 2011 is good too. -- Fabrizio Giudici - Java Architect, Project Manager Tidalwave s.a.s. - We make Java work. Everywhere. java.net/blog/fabriziogiudici

[android-developers] enable / disable orientation changes at runtime...

2010-09-21 Thread sdphil
is there a way to enable / disable orientation changes at runtime? i know you can force a screen orientation in your manifest using android:screenOrientation=portrait or =landscape but I would like a way to enable / disable it at runtime. tia. -- You received this message because you are

[android-developers] Re: Android devices supporting OpenGL ES 2.0 (at least through NDK) as of September 2010

2010-09-21 Thread Robert Green
You're going to find a couple of major chips used for Android phones so just knowing that lets you know what it supports: Integrated CPU/GPU Qualcomm MSM7200 - OpenGL ES 1.1 (G1, Hero, MyTouch, Cliq, Blur, Eris) Qualcomm Snapdragon - ES 2.0 (N1, EVO, Incredible, others) Dedicated GPU Any PowerVR

[android-developers] Moved Android project to Eclipse 1.5 and new machine and project is missing Android jar

2010-09-21 Thread pawpaw17
Hi Guys, I configured a new machine and am trying to move my Android project over. When I look at the project properties under Java Build Path- Libraries, on the old machine I see a reference to Android 1.5 but nothing on the new machine and so nothing builds. I've installed Android correctly

Re: [android-developers] How to get the ListView item as web

2010-09-21 Thread TreKing
On Tue, Sep 21, 2010 at 1:08 AM, RKJ (Android developer) rkjhaw1...@gmail.com wrote: I've list view item as a object, I want to fetch item details as web to show. Can you clarify? Your question does not make much sense or have enough detail to properly help you.

Re: [android-developers] Re: ExpandableListView question

2010-09-21 Thread TreKing
On Tue, Sep 21, 2010 at 1:15 AM, dashman erjdri...@gmail.com wrote: 1. i would imagine newChildView would create the default layout - i have to create the different layout manually? Yes - you would create whatever you needed based on the current group / child position or whatever else

[android-developers] BONDI Widgets support in Android

2010-09-21 Thread sandhya
Does Android support BONDI Widgets. Is there any reference to it. I do have docs on Bondi Architecture and its compliance process. But I wanted to know whether BONDI is already integrated onto Android or do we need to implement it? Any information on BONDI widgets support for Android would be

[android-developers] Application installation using OCSP standards

2010-09-21 Thread sandhya
Hi, Does Android support OCSP (Online Certificate Status Protocol) standards? External Library OpenSSL do have reference to it. Does this have anything to do with Application certification validation with the OCSP server? Any info regarding this would be helpful. Thanks, Sandhya -- You

[android-developers] Re: How to compile Android Launcher source code?

2010-09-21 Thread Paolo
I followed the guide you have posted. Thanks a lot. Now I can see the android SDK source code in Eclipse, but I'm still not able to compile the Launcher anyway... Eclipse always shows the same error on the Launcher code... why? Is there something I don't undestand? Thanks, Paolo On 21 Set,

Re: [android-developers] Re: Apps running cuncurrently

2010-09-21 Thread Dianne Hackborn
On Tue, Sep 21, 2010 at 1:13 AM, Jerome Deng deng.jer...@gmail.com wrote: If there is less memory available, the resource used by the paused apps will be recycled by Davilk VM. Actually Dalvik isn't really involved here except for executing code as it normally does. This is implemented by

Re: [android-developers] can i create FOLDER for some message ....

2010-09-21 Thread TreKing
On Tue, Sep 21, 2010 at 6:26 AM, A N K ! T ankit.awasth...@gmail.comwrote: but am not getting any way to do this task.. http://developer.android.com/guide/topics/data/data-storage.html - TreKing

[android-developers] Service, AsyncTask, or both?

2010-09-21 Thread john brown
My application collects information entered by the user and stores it in a sqlite database. The information is observed and entered every few minutes. Each observation, or entry, becomes a record in a database table. Each record needs to be transmitted via httpClient to a server as soon as

Re: [android-developers] Is it worth writing a ContentProvider and using CursorAdapter for this case?

2010-09-21 Thread Dianne Hackborn
What you are doing is potentially really inefficient. Improving it is not really a matter of using a content provider, but using an adapter that doesn't require you load all of the data up-front. Adapters are designed to be able to load data on demand as needed, which CursorAdapter does. Also

Re: [android-developers] Is API Level 6 gone?

2010-09-21 Thread Dianne Hackborn
Basically nobody has 2.0.1 any more. That was an intermediate release, and all active devices have been updated past it. On Tue, Sep 21, 2010 at 6:47 AM, Leigh McRae leigh.mc...@lonedwarfgames.com wrote: I have updated my tools to revision 7 and now I can't do a build as it says the API

Re: [android-developers] Moved Android project to Eclipse 1.5 and new machine and project is missing Android jar

2010-09-21 Thread Brad Gies
Add External Jar will do it. Just make sure to pick the right one, and add the Google jar(s) if you're using them. Sincerely, Brad Gies --- Bistro Bot - Bistro Blurb http://bgies.com http://bistroblurb.com

Re: [android-developers] Service, AsyncTask, or both?

2010-09-21 Thread TreKing
On Tue, Sep 21, 2010 at 11:37 AM, john brown johnbrowngreybe...@gmail.comwrote: Or am I missing something useful offered by Service that would benifit this situation? Well, Service is useful for running background tasks that don't require a UI, which sounds like what you need. Look at

Re: [android-developers] Is API Level 6 gone?

2010-09-21 Thread Leigh McRae
Alright. Thanks for the rely. So I built it with --target 8 and left the min SDK version at 5. Should be good? I just needed mutli-touch is all. uses-sdk android:minSdkVersion=5 / On 9/21/2010 12:38 PM, Dianne Hackborn wrote: Basically nobody has 2.0.1 any more. That was an intermediate

[android-developers] HTTP POST

2010-09-21 Thread John Gaby
I am trying to do an HTTP POST of some data. The following is a test routine that I wrote to try and accomplish this: void Put() { HttpURLConnection connection = null; DataOutputStream outputStream = null; String urlServer =

Re: [android-developers] Is API Level 6 gone?

2010-09-21 Thread Dianne Hackborn
Yeah should be fine. On Tue, Sep 21, 2010 at 9:52 AM, Leigh McRae leigh.mc...@lonedwarfgames.com wrote: Alright. Thanks for the rely. So I built it with --target 8 and left the min SDK version at 5. Should be good? I just needed mutli-touch is all. uses-sdk android:minSdkVersion=5 /

[android-developers] Re: OpenGL lockups in 2.2

2010-09-21 Thread timedilation
Not sure if the following will fix the freezing in all cases but it appears to have fixed it in my app. I still have my fingers crossed about it although my app hasn't frozen for a while now - even when I let it run overnight on an HTC Desire 2.2. I first took the source code of GLSurfaceView

[android-developers] Re: map can't load at specific places

2010-09-21 Thread dadada
All the map tiles don load at home. Internet and google map app is working. Just my app's map tiles aren't loading. I can get my location update. Strange. The overlay is drawn without connectivity. I don't think connectivity is the problem here. I am on 3G. On Sep 21, 12:27 pm, TreKing

Re: [android-developers] Re: How to compile Android Launcher source code?

2010-09-21 Thread Dianne Hackborn
Launcher currently uses a number of experimental/private APIs. If you are doing this to create something you will place on Market, you *must* change the code to not use those APIs. If you are doing this as part of platform development for a device, personally I would recommend just using the

Re: [android-developers] Re: Calling startActivity() from outside of an Activity context requires the FLAG_ACTIVITY_NEW_TASK flag ?

2010-09-21 Thread Dianne Hackborn
Please move this to a group for platform development, such as android-porting or android-platform. On Tue, Sep 21, 2010 at 4:58 AM, mani smanikanda...@gmail.com wrote: I even tried to do this.getApplicationContext().startActivity() -- but this anyway not possible coz am not under a Activity

  1   2   3   4   >