[android-developers] Increasing Frame Rate

2010-02-15 Thread Uzair
Anyone knows how to increase the fps in android?? I am developing a 2D game using rokon engine but i am getting only 7-8 fps. How can i increase the frame rate, is there any method to set the fps -- You received this message because you are subscribed to the Google Groups Android Developers

Re: [android-developers] Re: Nexus 1 opengl driver problem

2010-02-15 Thread Ralf Schneider
Hi Carlo, well, I'm currently really only experimenting with zero optimizations - one could say I nearly make everything wrong regarding performance. So you can treat all my answers and numbers as a worst case. 2010/2/15 Carlo ca...@hyperdevbox.com Thanks for your feedback :) Do you push

[android-developers] Upgrading android 1.1 platform to android 1.5

2010-02-15 Thread andu
How are you all? I have android phone with platform version 1.1. I have developed and tested some applications on it, But now I want to upgrade the platform from 1.1 to 1.5 or latest. my question is : 1. Is it possible to upgrade the phone from 1.1 to 1.5 (or latest) 2. If it is possible,

[android-developers] Re: Sendin KeyEvents

2010-02-15 Thread Houcem Berrayana
Hi Rogério, Thank you for your help. Actually I'm using full screen mode and I can't use the status bar. I'm using a very special device so that I really need to know how to send key events programmatically. Do I have access to IWindowManager for example (I can't see it in the SDK)? I read so many

[android-developers] Re: HttpPost, ssl and error 'Not trusted server certificate'

2010-02-15 Thread badzio
On bugs.sun.com I've found workarround - read getErrorStream instead of getInputStream (when httpcode = 400). It works fine but when I try to convert this stream into string using solution from http://www.java2s.com/Code/Java/File-Input-Output/ConvertInputStreamtoString.htm than have

[android-developers] Re: Smaller tabs, such as the Facebook official app

2010-02-15 Thread keianhzo
It works perfectly for me in a rooted HTC Hero (1.5) but it doesn't work in a non-rooted HTC Tattoo (1.6), so so I deduce that for some reason you need to have a rooted phone for the hierarchyviewer to work. On 15 feb, 03:52, Mark Murphy mmur...@commonsware.com wrote: Mark Murphy wrote: I just

[android-developers] Zooming on android - google maps becomes slower

2010-02-15 Thread sheik
Hello developers, Sorry for the inconvenience .. but am stuck up here for quite a while !!! We have developed a GPS based app in which it record the user routes and show it on the map...but Panning around on the map when reviewing my route is painfully slow, it takes at least 4 or 5 seconds

[android-developers] Re: Increasing Frame Rate

2010-02-15 Thread Hekki
Hi mate, Your questions is not really android related, not android developpers related anyway since the rockon engine is really something specific. Try here : http://rokonandroid.com/community Good luck with your project. Yahel On 15 fév, 09:17, Uzair uskele...@gmail.com wrote: Anyone knows

Re: [android-developers] Re: Multitouch seems badly broken on Nexus One 2.1-update1

2010-02-15 Thread Sean Hodges
The Nexus One uses the Synaptics ClearPad 2000 series: http://www.synaptics.com/about/press/press-releases/synaptics-clearpad-on-nexus-one-smartphone According to this reference: http://www.synaptics.com/solutions/products/clearpad#benefits-2000 this model has support for a maximum of 2

[android-developers] Re: programatically press a button

2010-02-15 Thread saru
hey, Please tell me about http://davanum.wordpress.com/2007/12/19/android-simulate-key-strokes/. How they did it On Feb 14, 7:17 pm, Mark Murphy mmur...@commonsware.com wrote: saru wrote: Hey i want to write a program in android to press  menu button or end button or answer button

[android-developers] Re: Apps not appearing in market place on certain phones

2010-02-15 Thread keianhzo
Another cause of an App not appearing for some devices can be that the developer hasn't adapted the App for that device. From the 1.6 on, you can explicitly configure the App descriptor for an App to work only in certain devices with determined min and max Android SDK versions, screen sizes and

[android-developers] Re: how to crop an image in android 2.x

2010-02-15 Thread Tuhin subhra
Bitmap bitmapOrg = BitmapFactory.decodeFile(Location_Image.filename); int width = bitmapOrg.getWidth(); int height = bitmapOrg.getHeight(); int newWidth = 200; int newHeight = 200; // calculate the scale - in

[android-developers] Re: programatically press a button

2010-02-15 Thread Houcem Berrayana
Hi saru, I posted the same question last Friday. I found the solution which consists on dispatching the event using the event dispatcher of the activity. If you would like to read some advanced technical details about event processing you can read this excellent post:

[android-developers] Appwidget with fast updating needed ...

2010-02-15 Thread Csenteri Barna
Hi I would need a fast updating (minimum 5 frames/second) appwidget which can be on the desktop all the time (like the cpu usage or other things - mostly measurement gauges) ... The appwidget is not a must but I've found it easy to configure for any customer so the management is easy and I need

Re: [android-developers] Re: programatically press a button

2010-02-15 Thread Sean Hodges
Well, the two things I can tell you about it is: 1) They show exactly how they did it by giving you the source code. 2) They don't show you how to programatically send Menu or End Call button presses, because it is not possible to simulate those buttons (as Mark stated already). Those hardware

[android-developers] Re: Sendin KeyEvents

2010-02-15 Thread Houcem Berrayana
I found the solution: there is an excellent post : http://letsgoustc.spaces.live.com/blog/cns!89AD27DFB5E249BA!488.entry new Thread(new Runnable() { @Override public void run() {

[android-developers] Re: programatically press a button

2010-02-15 Thread Houcem Berrayana
I had exactelly the same problem as you and using that peace of code I could simulate back and home keys. On 15 fév, 10:52, Sean Hodges seanhodge...@googlemail.com wrote: Well, the two things I can tell you about it is: 1) They show exactly how they did it by giving you the source code. 2)

[android-developers] Re: Increasing Frame Rate

2010-02-15 Thread Uzair
Thanks ... On Feb 15, 2:22 pm, Hekki kaye...@gmail.com wrote: Hi mate, Your questions is not really android related, not android developpers related anyway since the rockon engine is really something specific. Try here : http://rokonandroid.com/community Good luck with your project.

[android-developers] Re: programatically press a button

2010-02-15 Thread Houcem Berrayana
I had exactelly the same problem as you. Using that piece of code I could simulate Home and Back key events. Regards, On 15 fév, 10:52, Sean Hodges seanhodge...@googlemail.com wrote: Well, the two things I can tell you about it is: 1) They show exactly how they did it by giving you the source

Re: [android-developers] Re: programatically press a button

2010-02-15 Thread Sean Hodges
The back button is fine, but you can't simulate the exact behaviour of the home button. For example, bringing up the recent apps menu when long pressing it. Good work-around for some scenarios though. On Mon, Feb 15, 2010 at 10:36 AM, Houcem Berrayana houcem.berray...@gmail.com wrote: I had

[android-developers] Re: programatically press a button

2010-02-15 Thread Houcem Berrayana
For a long press you should make the thread sleeping for a while until the recent apps appears. I haven't yet tested the menu, and phone calls buttons. On 15 fév, 11:47, Sean Hodges seanhodge...@googlemail.com wrote: The back button is fine, but you can't simulate the exact behaviour of the

[android-developers] how to Play music from AudioTrack

2010-02-15 Thread kavitha
Hi All, I want to play music from online mp3 link. I am reading the music data into a stream and trying to play it using audio track. But itz giving only noise.No music i could listen. This is my code. int intSize = android.media.AudioTrack.getMinBufferSize(8000,

[android-developers] Re: adb can't list my attached device

2010-02-15 Thread zeeshan
I tried the same but still cant see my devices in attached device list. i am using sony Ericsson Experia device. do i need to install any driver ? On Feb 13, 6:41 pm, deeMurthy darshana.mur...@wipro.com wrote: Its possible that the server is not running or there is some error w.r.t. it.U can

[android-developers] Camera burstmode implementation

2010-02-15 Thread Saikat
I want to implement burst mod in Android phone. I have done it upto certain extent. I changed in camera.java file. where actually once I get the jpeg call back , I triggered a nother capture(). which basically issue a another image capture. It's happening but the issue is, once one image is

[android-developers] Emulator Loading Error

2010-02-15 Thread Sasikumar.S
Hi, When i try to load my emulator it is showing 2 errors with 'Force Close' 'wait' Button. Error are :- Appplication Android Keyboard (in process com.android.inputmethod.latin) is not responding Application Settings (in process com.android.settings) is not responding How to stop showing

[android-developers] Re: how to Play music from AudioTrack

2010-02-15 Thread skink
On Feb 15, 12:12 pm, kavitha kavith...@gmail.com wrote: Hi All, I want to play music from online mp3 link. I am reading the music data into a stream and trying to play it using audio track. But itz giving only noise.No music i could listen. if you hear noise your code probably works ok

[android-developers] add an aidl file in android framework

2010-02-15 Thread dane131
hallo , i want to add an aidl file in android framework so i can import it in two applications(one binds remotely to the other).How can i do that? -- 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: how to Play music from AudioTrack

2010-02-15 Thread kavitha
Thanks for response. But how to convert any music into PCM format in android? Can anybody tell solution please Thanks Kaviha On Mon, Feb 15, 2010 at 5:07 PM, skink psk...@gmail.com wrote: On Feb 15, 12:12 pm, kavitha kavith...@gmail.com wrote: Hi All, I want to play music from online

[android-developers] add an aidl file in android framework

2010-02-15 Thread dane131
how can i add an aidl file in android framework? -- 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] Re: system hangs while giving Android build

2010-02-15 Thread Saikat
But other people here, are using 1 GB RAM and the build is fine in their system. Nobody is seeing any system stuck kind of problem. My hard disk is also fine. On Feb 10, 5:13 pm, James Wang jameswangc...@gmail.com wrote: I did have the same experience before. I think 1G is not enough and your

[android-developers] how to convert mp3/any type of data to PCM format in android

2010-02-15 Thread kavitha
Hi All, How to convert from mp3 or any type of audio data to PCM format in android? Please tell me the solution. It is very urgent. Thanks Kavitha -- 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: android 3DOF controller - call for developers

2010-02-15 Thread Jubei
As far as I know, without using the camera/trackball/touchscreen it's not very easy to add more DOF. If you have any ideas we'd be happy to hear your thoughts on the app's google group ]http://groups.google.com/group/elenhos Any ideas would be more than welcome. Nicholas On Feb 6, 4:43 pm, Bob

[android-developers] Re: Battery Temperature

2010-02-15 Thread Maxood
I also want to show exactly the same battery level information in my app. Wonder if you have found the relevant code/solution so far? On Jan 18, 10:53 am, Narseo Vallina nar...@gmail.com wrote: Hi, all I'm trying to obtain thebatterytemperature, thebatteryvoltage and thebatterycurrent. The

[android-developers] Re: Failed to fetch URL https://dl-ssl.google.com/android/repository/repository.xml

2010-02-15 Thread Ashish Srivastava
This is really bad behavior. None of you are trying to solve the problem for people with Proxy + Authentication enabled. It's really that people are being truly selfish. Shame on the community. On Jan 4, 9:31 am, teryz teryzpl...@gmail.com wrote: I have a problem using AndroidSDKUpdater

[android-developers] Re: how to Play music from AudioTrack

2010-02-15 Thread skink
On Feb 15, 12:42 pm, kavitha kavith...@gmail.com wrote: Thanks for response. But how to convert any music into PCM format in android? Can anybody tell solution please lame for example: http://lame.sourceforge.net/download.php the question is: 'are you aware of the fact that pcm could be

Re: [android-developers] Re: programatically press a button

2010-02-15 Thread Mark Murphy
saru wrote: hey, Please tell me about http://davanum.wordpress.com/2007/12/19/android-simulate-key-strokes/. How they did it The date on that post is from December 2007. As of December 2007, Android had been out for about a month and existed on no hardware. Android has changed a fair bit

Re: [android-developers] Re: how to Play music from AudioTrack

2010-02-15 Thread kavitha
yes,i am aware about that If i download into files from continous music online link and then play from MediaPlayer,,,i notice some gap between switching over of 2 media players/files, so i thought of decoding audio into stream and play from audiotrack How to play files from media players

[android-developers] Writing Twitter Client using OAuth: Callback fails

2010-02-15 Thread Samuh
I am working on an Android application which is to serve as a simple Twitter client. I am using OAuth for authorization and have registered my application with Twitter as new OAuth client. Now when the user authorizes the application, I expect to be taken to the Callback URL(which is pointing to

[android-developers] Re: Writing Twitter Client using OAuth: Callback fails

2010-02-15 Thread Samuh
I made a mistake above. The following intent is launched for authorization: Intent { act=android.intent.action.VIEW dat=http://twitter.com/oauth/ authorize? oauth_token=XXACTUAL_TOKEN_HEREXX8oauth_callback=myapp:///tweet cmp=com.android.browser/.BrowserActivity } -- You received this message

[android-developers] Android 2.1 Sensors with screen off

2010-02-15 Thread Jamie
Hi, I am writing an application for the Nexus One where I require the accelerometer and/or the orientation sensor to remain active while the screen is off. I have taken a partial wake lock, but it is quite clear that as soon as the screen goes off any sensor updates stop. I have searched this

Re: [android-developers] Zooming on android - google maps becomes slower

2010-02-15 Thread TreKing
One easy thing you could do is early out on the shadow pass. Draw gets called twice, one for the shadow layer and then again for the real drawing. So unless you're doing something with the shadow pass you can exit early: draw(, boolean shadow) { super.draw(..., shadow); if (shadow) return;

[android-developers] Media Player not working on HTTPS as Data source

2010-02-15 Thread Kamal Hasan
Hi, I am able to play mp3 files from a HTTP server.I have given the link as Datasource and it is working fine.When I replaced the link with HTTPS then media player is not working.Please help to resolve this issue. Thanks in advance. Cheers, Kamal -- You received this message because you are

Re: [android-developers] Re: Failed to fetch URL https://dl-ssl.google.com/android/repository/repository.xml

2010-02-15 Thread Sean Hodges
On Mon, Feb 15, 2010 at 12:47 PM, Ashish Srivastava ashish0srivasta...@gmail.com wrote: This is really bad behavior. None of you are trying to solve the problem for people with Proxy + Authentication enabled. It's really that people are being truly selfish. Shame on the community. Did it occur

[android-developers] edittext not showing text in view on gallery

2010-02-15 Thread social hub
I have a gallery widget and in that i had a view with linear layout which has a edit text inside. When it launches on device the edittext box shows but has no text visible. However when i scroll to next view in gallery it shows text and when it comes to focus and centered the text disappears.

[android-developers] Dialogs with EditText, hanging off ListView?

2010-02-15 Thread Bill Michaelson
I'm looking for sample code that provides the type of interface provided by the Android general settings/configuration tree. I.e., the type of thing that presents trees of scrolling lists of options with leaf nodes that present pop-up dialogs the contain single-field text entry, as well as other

Re: [android-developers] Dialogs with EditText, hanging off ListView?

2010-02-15 Thread Mark Murphy
Bill Michaelson wrote: I'm looking for sample code that provides the type of interface provided by the Android general settings/configuration tree. I.e., the type of thing that presents trees of scrolling lists of options with leaf nodes that present pop-up dialogs the contain single-field

[android-developers] Re: Webview segfault causes process to restart and in rare cases take the Android platform down and turn the phone off

2010-02-15 Thread Mike
Thanks again to HeHe for the post. I built a simple test app that has a WebView on a page and I call loadURL with null. This reproduces the problem I am seeing. I have notified my contact with the AdSense for Mobile Apps team about this. I'm concerned that this bug remains in the OS, however.

[android-developers] Font resizing

2010-02-15 Thread Vijay
Hi, I wish to know if Android supports dynamic font resizing at all? Say, if I have a button with 100dip width and 15px font text in it. If this button gets a longer text at some time, how can I make font size smaller so that I can fit in all text. PS: It just cuts-off the text and doesn't

Re: [android-developers] Font resizing

2010-02-15 Thread Mark Murphy
Vijay wrote: I wish to know if Android supports dynamic font resizing at all? Say, if I have a button with 100dip width and 15px font text in it. If this button gets a longer text at some time, how can I make font size smaller so that I can fit in all text. PS: It just cuts-off the

[android-developers] Re: MapView draw Overlays

2010-02-15 Thread Stefan
Hi, thanks for your answer. i first try it with the getLatitudeSpan and so on and check, if this point is visible or not. this works fine in the most cases. it also works, if i touch (ACTION_DOWN) the map with my thumb, move the map (ACTION_MOVE), and leave the thumb from the map (ACTION_UP). But

[android-developers] Re: add an aidl file in android framework

2010-02-15 Thread dane131
problem solved On 15 Φεβ, 13:44, dane131 orestis...@gmail.com wrote: how can iaddanaidlfileinandroidframework? -- 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

Re: [android-developers] Re: MapView draw Overlays

2010-02-15 Thread TreKing
On Mon, Feb 15, 2010 at 11:35 AM, Stefan ebay-dah...@web.de wrote: So how can i detect, if the map has a new Map center for example? You could save the map center location and check in the draw method to see if it's changed since the last time. There's probably a better way, but there's one

[android-developers] Re: Inadvertent breakage by SDK going forward

2010-02-15 Thread Mike Collins
Reworking the platform isn't an option...guess that leaves me with some naming convention. thanks, mike -- 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] custom seek bar

2010-02-15 Thread Vaibhav Goel
Hi I want to make a custom seek bar having color gradient as shown in the below image url. http://i49.tinypic.com/2mi5lsh.jpg For this I tried to make background as seek_background.xml shape xmlns:android=http://schemas.android.com/apk/res/android; android:shape=rectangle gradient

Re: [android-developers] custom seek bar

2010-02-15 Thread Mark Murphy
Vaibhav Goel wrote: Hi I want to make a custom seek bar having color gradient as shown in the below image url. http://i49.tinypic.com/2mi5lsh.jpg For this I tried to make background as seek_background.xml shape xmlns:android=http://schemas.android.com/apk/res/android;

[android-developers] custom seek bar

2010-02-15 Thread Vaibhav Goel
Hi I want to make a custom seek bar having color gradient as shown in the below image url. http://i49.tinypic.com/2mi5lsh.jpg For this I tried to make background as seek_background.xml shape xmlns:android=http://schemas.android.com/apk/res/android; android:shape=rectangle gradient

[android-developers] Re: how to Play music from AudioTrack

2010-02-15 Thread skink
On Feb 15, 2:05 pm, kavitha kavith...@gmail.com wrote: yes,i am aware about that If i download into files from continous music online link and then play from MediaPlayer,,,i notice some gap between switching over of 2 media players/files, so i thought of decoding audio into stream and

[android-developers] static context access

2010-02-15 Thread laphroaig15
I'm trying to handle exceptions at a global level. My understanding is that the only way to do this is with an UncaughtExceptionHandler. However, this reduces one to the primitive java file and network i/o packages. I'd like to be able to broadcast an intent or bind to a service. Is there some

[android-developers] Re: edittext not showing text in view on gallery

2010-02-15 Thread social hub
I believe the default theme for grid view children seems to be causing this issue. Once you specify the text color in xml file for edit text the issues seems to go away. On Mon, Feb 15, 2010 at 9:13 AM, social hub shubem...@gmail.com wrote: I have a gallery widget and in that i had a view

[android-developers] Re: Pinch-zooming on maps gives no feedback

2010-02-15 Thread CaptainSpam
Oh, I see what you're saying. I wasn't at all testing it DURING the pinch-zoom, only when it actually finished (my app doesn't require that level of accuracy). Yes, I believe when I was testing it, it didn't fire during the zoom. On Feb 13, 11:43 pm, JP joachim.pfeif...@gmail.com wrote:

Re: [android-developers] static context access

2010-02-15 Thread Mark Murphy
laphroaig15 wrote: Is there some way to interact with the android packages to retrieve a context in a static manner? Not really. The Application object is a singleton, as is any Service you have running, but I am not aware of ways to obtain those from a static method. Moreover, please do not

[android-developers] Re: Multiple versions of app with different package names

2010-02-15 Thread jarkman
I'm just going through a similar exercise in order to build lite and pro versions of the app from a single codebase. I'm using an Ant script derived from this one: http://ulrichscheller.blogspot.com/2009/10/android-deploying-multiple-targets-from.html which converts the project from one target to

[android-developers] Re: Appwidget with fast updating needed ...

2010-02-15 Thread JP
I've implemented a dynamic app widget that receives updates every second (at times). Looks like the app widget framework itself is not sophisticated enough to get to the speed you want, so you might be able to get there based on the approach I took. Which is to run a separate service that sends

Re: [android-developers] Re: Appwidget with fast updating needed ...

2010-02-15 Thread Mark Murphy
JP wrote: Yeah, it would be desirable to also get a more sophisticated view model. Ideally one that allows the reuse of whatever dynamic was developed for the main app, in the spirit of polymorphism. But here we are, and the current model won't change, I take that for certain. If you want

[android-developers] Example that prints 1 2 3 4 on A A A A?

2010-02-15 Thread BobG
I asked this question on Android Beginners several days ago, but didnt get any nibbles. I have an app that almost works... I can draw the needle on my gauge rotated, but I want to use A and Z keys to increment and decrement the needle angle. I'd be gratefule if someone could shoe me an example

Re: [android-developers] Re: Appwidget with fast updating needed ...

2010-02-15 Thread Sean Hodges
I was puzzling over this one, but I agree that a new home screen is a good idea. It will give you the flexibility you need to display custom views, at a suitable refresh rate. You will, however, have to deal with all the resource consumption issues that go with it. A 5fps update on the home

Re: [android-developers] Re: Appwidget with fast updating needed ...

2010-02-15 Thread Mark Murphy
Sean Hodges wrote: You will, however, have to deal with all the resource consumption issues that go with it. A 5fps update on the home screen is likely to drain the battery pretty badly when the phone is idle. That actually shouldn't be all that bad -- just disable the updates in

[android-developers] Acne Treatement

2010-02-15 Thread olipolus
Easy and Natural Ways to Get Rid of Acne http://acne-moneybizhome.blogspot.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

Re: [android-developers] Re: Appwidget with fast updating needed ...

2010-02-15 Thread Sean Hodges
On Mon, Feb 15, 2010 at 7:34 PM, Mark Murphy mmur...@commonsware.com wrote: That actually shouldn't be all that bad -- just disable the updates in ACTION_SCREEN_OFF (and onStop()) and re-enable them in ACTION_SCREEN_ON (and onStart()). Good point Mark. It would take a little forward thinking,

[android-developers] Re: Hey Mr or Ms Moderator...

2010-02-15 Thread Jason Proctor
this list is really amazing. first the gmail change in april stopped the list copy of the message reaching gmail recipients, so people don't know whether their post made it. i think gmail assumes that any message from the same address is its own copy that it uses for conversation tracking.

[android-developers] Re: static context access

2010-02-15 Thread laphroaig15
Didn't eat my wheaties this morning. I can simply pass in the reference during the construction of the handler. Mark, thanks for the feedback. I agree that broadcasting through an excepted context is a little dicey, but it seems to work for now. I can't think of a better alternative

[android-developers] Re: custom seek bar

2010-02-15 Thread skink
Vaibhav Goel wrote: Hi I want to make a custom seek bar having color gradient as shown in the below image url. http://i49.tinypic.com/2mi5lsh.jpg For this I tried to make background as seek_background.xml shape xmlns:android=http://schemas.android.com/apk/res/android;

[android-developers] while onLongClick'ed

2010-02-15 Thread Ricky
i have search and have not found a solution to my problem. my problem is that, i am trying to create a loop while the button is LongClicked. currently when i long click, the moreDice() method is only called once. i need to create a loop that will keep calling the moreDice() untill the user

[android-developers] bricked

2010-02-15 Thread Nick
Hi, i have a bricked Htc magic and i have tried all possible ways on the internet to unbrick by phone(sadly ther are none) .i am preety sure some one here is smart enough to come up with a sloution and really need one...this is one of the most expensive phones i have bought out of my budget and i

[android-developers] Re: Dalvik Turbo

2010-02-15 Thread Matt
http://www.myriadgroup.com/Media-Centre/News/MYRIAD-BRINGS-3x-FASTER-APPLICATIONS-RICHER-GAME-GRAPHICS-AND-BETTER-BATTERY-LIFE-TO-ANDROID.aspx fixed due to broken link. On Feb 12, 2:27 pm, skink psk...@gmail.com wrote: hi, is it in any way related to jit that is being developed at google?

Re: [android-developers] Re: How to start an Activity from a Service and getting a result from it

2010-02-15 Thread sai ongoleee
download free important softwares,movies,games many more http://www.moreutilities.blogspot.com/ On Sat, Feb 13, 2010 at 11:59 PM, Menny menn...@gmail.com wrote: So you suggest that I'll have a pre-define resource which will hold all the information I need (let's say it is an XML resource)

[android-developers] Application flow/interaction graphing

2010-02-15 Thread jcknight
I was wondering if anybody had suggestions for some graphing software to help visualize my Android app's flow structure. Something that would help me (and my project manager) to visually see how Activities/ Services/etc interact with other components in the app, be it other Activities or

[android-developers] Re: Inadvertent breakage by SDK going forward

2010-02-15 Thread jasper
And doesn't this also mean that there's an implicit requirement that I prefix my methods with a tag to avoid future version name collisions? If I have a method in my 1.6 app called MyView.doSomething(), and MyView extends an Android class like TextView, and subsequent to 1.6, Google adds a method

[android-developers] retrive checked CheckBoxes’s items in Listview

2010-02-15 Thread Idan
Hi, Ive got ListActivity and i am using custom CursorAdapter. in my list view i have items. in each item i got also a checkbox. the listview is binded to database via CursorAdapter. I want on a button press, to retrieve all items which thire checkboxes status is CHECKED. how can i retrive all

[android-developers] Re: Simple question... how do I open the browser?

2010-02-15 Thread Sebastian L (Berlin)
On 25 Jan., 04:32, Breezy mbre...@gmail.com wrote: Which said to use this...     Intent i = new Intent(Intent.VIEW_ACTION, Uri.parse(http://www.cnn.com;));     startActivity(i); Something seems to be wrong with the Uri.parse .. this worked for me: String url = http://www.google.com;;

[android-developers] Android, dom4j and jaxen...

2010-02-15 Thread Tjosull
Hi, I am about writing an application for Android. It should parse an XML file which is an internet resource. As Android does not support XPath I did some research and found the same article as mentioned above. Sadly, I can't get it to work. After instantiating the SAXReader the application

[android-developers] Media player API's and File Permission problem

2010-02-15 Thread Arpit
Hello, I am facing problem in playing mp3 file using mediaplayer API's. File is in application private folder say app_xyz file permission is -rw--- when file is created using File API's. So is there any way to change the file permission to -rw-rw---. without moving it to system folder

[android-developers] Re: webkit resizing in droid

2010-02-15 Thread Brett S
Hi, I also cannot work out the meta viewport to set pages fixed at the correct size on a Nexus One. I tried this tag: meta name=viewport content=width=device-width,minimum- scale=1.0,maximum-scale=1.0 However, the resulting page was bigger than the viewport. I found this tag rendered a page

[android-developers] Problem Using Source Code for Alarm Clock

2010-02-15 Thread Matt
I am a bit stuck here. I think I am missing something obvious but just can't figure out what it is. I have been trying to load the original source code for Alarm Clock into Eclipse, but the code shows an error in DigitalClock.java - mContext cannot be resolved. I have looked in a number of

[android-developers] Re: Recording into Direct ByteBuffer with offset

2010-02-15 Thread Divkis
Could anyone please offer some advice on this? I hope my question was clear enough. Thanks and hoping to get a reply, DivKis On Feb 14, 12:03 am, Divkis divick.kish...@gmail.com wrote: Hi,     Is there a way to capture the audio using AudioRecord or any other API into a Direct ByteBuffer

[android-developers] Re: My 1st Android Program

2010-02-15 Thread newborn
congrates ! you 've climbed the first step..best of luck for the future.. -- 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] Pre-compiled SrecTestAudio for Windows XP?

2010-02-15 Thread Phelonius Friar
I am working with a non-technical person and saw that the SRecTestAudio tool (for speech recognition) or even SRecTest (works on files only rather than the realtime audio stream) was targeted at Ubuntu and Windows (and Android). I'm okay with porting it from source onto the Linux distro I use

[android-developers] use a button to move a cursor in a widget

2010-02-15 Thread Olivier
I try to create my nice widget but I'm locked in a problem of button. this an example of code: public class MyWidget extends AppWidgetProvider { public void onUpdate(Context context, AppWidgetManager appWidgetManager, int[] appWidgetIds) { Cursor c

[android-developers] What's the max length of Application's name ?

2010-02-15 Thread Austine
I wonder what the max legnth of Application's name is.. Thanks -- 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] Andoid Apps Development

2010-02-15 Thread gurnoorinder
Hey, I want to develop Android apps but my problem is that i do not have a Android based phone. Do i need one to test my apps Thanks Gurnoorinder -- 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] Help with my project.

2010-02-15 Thread Skillz
Hi, I have 12 buttons, each one has one number as there name. I also have 4 edit text boxes. What i need help with is being able to press the number 1 button and it will display a number 1 in the edit text box. Also how can i make the edit text box only contain one number and will go to the next

[android-developers]

2010-02-15 Thread David Abrahamsson
-- 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

[android-developers] Search options for Market?

2010-02-15 Thread Benn
Hi all - I'm looking for details (documents, posts, or even just a list) regarding what options Market supports (for ex: 'pub') to restrict or target the search. Cheers, --B -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this

[android-developers] android Telephony API access levels

2010-02-15 Thread mike
in telephony API what are the access levels, can i change certain methods in other terms i wanted to run my application on top of telephony API. When a call comes or when dialing a certain number i want to access my application and need to display my application output as well. so will i be

[android-developers] How to do partial build of Android

2010-02-15 Thread MF
Hi, I made some changes to an Android application (the browser) and I want to compile the application. Is there a way to do a partial build ? (instead of rebuilding the whole thing). Thanks MF -- You received this message because you are subscribed to the Google Groups Android Developers

[android-developers] Re: Example that prints 1 2 3 4 on A A A A?

2010-02-15 Thread theSmith
Google search is your friend, and so are the docs. http://developer.android.com/intl/de/reference/android/app/Activity.html#onKeyDown%28int,%20android.view.KeyEvent%29 Didn't test it but something like this @Override public boolean onKeyDown(int key, KeyEvent ev) { switch(key) {

[android-developers] Re: Force Close just restarts the app?

2010-02-15 Thread Brandon
Good idea, but keep in mind that this is also to prevent malicious behavior of applications that may hijack a phone. Best Google could do would be to implement what you say, but only for themselves (in the case of the browser). Evil, I know, but they are going to have to start doing these things

[android-developers] Re: Bluetooth support in Android 1.5

2010-02-15 Thread cxo
Hello, Ive had the same problem. I found this but im still trying to get it to work: http://code.google.com/p/backport-android-bluetooth/ Maybe itll be of some use to you. -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this

[android-developers] IOException : no space left on device

2010-02-15 Thread Surbhi Mutneja
Hi, I am new to Android. I created an application which has around 50 audio and png files. The application size is around 54MB. When I run this application on emulator it shows following exception : [2010-02-15 10:57:48 - ipooja]Failed to upload ipooja.apk on device 'emulator-5554' [2010-02-15

[android-developers] Accuracy in GPS Location

2010-02-15 Thread MaHaJaN
Hi , I wanted to know that the accuracy value returned by the getAccuracy() is of which type radial accuracy or horizontal accuracy. -regards Rajat -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to

  1   2   >