[android-developers] Re: How to increase FPS (now ~20, desired ~40-50)

2010-01-19 Thread Andre
Hello, thank you all for many helpful posts. I tried to replace all getters and setters with member variables and asteroids[i], bullets[i]... with corresponding asteroid, bullet... variables. Though this is very important issue, as I supposed, this doesn't improve FPS in my case. I agree, that

[android-developers] Re: Using permissions

2010-01-19 Thread ColletJb
By change in the future, you means in future Android releases ? I guest some backward-compatibility systems will be put in place then... Thanks a lot for your answers. On 18 jan, 18:53, Dianne Hackborn hack...@android.com wrote: It means the UI behavior could change in the future. On

[android-developers] Re: Effectively using MediaPlayer and saving resources...

2010-01-19 Thread Nugman
Dont call release when it is still playing. The start() function returns immediatly. So it could still run. Release it, when it is finished. If this doesnt work out, create them once as class members (and release at onDestroy). Dont forget that a long sound will disturb the ui thread. In this case

[android-developers] Re: ATTENTION ANDROID TEAM: Take back control of Android.

2010-01-19 Thread String
On Jan 19, 12:50 am, Dianne Hackborn hack...@android.com wrote: Specifically which problems are you having? Problem is, half the time we don't know. Users post 1* Market comments saying Force closes on Droid or Doesn't work on Samsung Moment, and unless you have that specific handset to test

[android-developers] Question about gallery widget

2010-01-19 Thread GroupeM2ICPS
Hello, I use a gridView to show pictures stored on the SD card and when I click on a picture I start a new activity where I show the pictures in a gallery (to show each picture in full screen), but I have a problem : i can't start the gallery at the correct picture , How can I do to tell to the

[android-developers] Re: How to increase FPS (now ~20, desired ~40-50)

2010-01-19 Thread Andre
Hello Robert. I want to thank you for sharing your experience with beginners, your dev journal is extremely helpful! I will change my code to work with Matrix as you suggest and post the result here... If I correctly understood your question about surface opacity - Yes my surface is opaque, I

[android-developers] virtual keyboard on dialog webview not shown

2010-01-19 Thread sleith
Hi, i wonder how to show the virtual keyboard on dialog webview? i've tried to show it manually but nothing happens . 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] Re: Data connectivity problem.Server failed to communicate

2010-01-19 Thread g...@devicedriven
found the solution.. it was the problem with tomcat web-server.. when i switched to XAMPP web- server everything worked just fine... does'nt android support tomcat web server?? On Jan 18, 9:27 am, g...@devicedriven ginokur...@gmail.com wrote: Can any body tell me why this is happening..Whenever

[android-developers] Re: How to increase FPS (now ~20, desired ~40-50)

2010-01-19 Thread skink
On Jan 19, 9:41 am, Andre andranik.abra...@gmail.com wrote: Hello Robert. I want to thank you for sharing your experience with beginners, your dev journal is extremely helpful! I will change my code to work with Matrix as you suggest and post the result here... If I correctly understood

[android-developers] Re: ATTENTION ANDROID TEAM: Take back control of Android.

2010-01-19 Thread Piotr
That's what I'm talking about ! We do not know, where problems are, when software works on clean Android and do not works on some devices. For example: Hero's UI's is BUGGY as hell (for example, keyboard events are not fired correctly). Another example: why Samsung's GPS is working not the same

[android-developers] Re: How to increase FPS (now ~20, desired ~40-50)

2010-01-19 Thread skink
On Jan 19, 10:33 am, skink psk...@gmail.com wrote: On Jan 19, 9:41 am, Andre andranik.abra...@gmail.com wrote: Hello Robert. I want to thank you for sharing your experience with beginners, your dev journal is extremely helpful! I will change my code to work with Matrix as you suggest

Re: [android-developers] Re: Google Add-On Maps for 1.5 and higher

2010-01-19 Thread Jonas Petersson
Hi Dianne, Dianne Hackborn wrote: As of 2.0 I believe there is an additional attribute on uses-library that lets you specify that it is optional. This sounds like a really good step. However, I failed to find it mentioned in the docs (maybe I'm just looking in the wrong place). When this

[android-developers] Re: How to increase FPS (now ~20, desired ~40-50)

2010-01-19 Thread Andre
That's OK, I've already tried use RGB_565 and other bitmap configs, this makes sence if you using background image (wich should be RGB_565 for faster draw). On 19 янв, 12:37, skink psk...@gmail.com wrote: On Jan 19, 10:33 am, skink psk...@gmail.com wrote: On Jan 19, 9:41 am, Andre

[android-developers] licensing cost for google maps?

2010-01-19 Thread ber4444
Hi, I'm building a map component to a webview-based Android app. I learned from the Google Sales department using the JavaScript API of Google Maps has a licensing fee for Asset Tracking apps. But I can't get an answer from them whether using the Android maps API also has a licensing cost or it's

Re: [android-developers] Re: I am a german market developer. How can I see the english comments to my program?

2010-01-19 Thread Adrian Vintu
sorry, you are right. comments are also missing from androidzoom and andrlib :( On Sun, Jan 17, 2010 at 10:47 PM, Martin google-gro...@digle.de wrote: But since the Google Market just allows to use the Market api for 5 Minutes an hour, cyrket.com is down and all the caching-pages will not be

[android-developers] Downloading images in ListView

2010-01-19 Thread Namrata
Hi, I am using ListView to show 1 TextView and 1 ImageView. I want to download images for this ImageView from server. Is there any api in android like setImageURI() which will take url e.g. http://abc.com/ myimage.png, otherwise i'll have to write my own http code downloading images in for loop.

[android-developers] Re: Downloading images in ListView

2010-01-19 Thread Nithin
AFAIK, no API like that. You need to download as a inputstream, convert to bitmap, set the bitmap to imageview using the API setImageBitmap() to the imageView. Nithin On Jan 19, 3:47 pm, Namrata puranik.namr...@gmail.com wrote: Hi, I am using ListView to show 1 TextView and 1 ImageView. I

[android-developers] Re: How to increase FPS (now ~20, desired ~40-50)

2010-01-19 Thread skink
On Jan 19, 10:57 am, Andre andranik.abra...@gmail.com wrote: That's OK, I've already tried use RGB_565 and other bitmap configs, this makes sence if you using background image (wich should be RGB_565 for faster draw). and you are sure that your bitmaps (asteroids, bullets, space ship) are

[android-developers] Re: Downloading images in ListView

2010-01-19 Thread Nithin
Just now found one API setImageURI() for ImageView. You can try this too.. setImageURI(Uri.parse(http://abc.com;)); Nithin On Jan 19, 3:59 pm, Nithin nithin.war...@gmail.com wrote: AFAIK, no API like that. You need to download as a inputstream, convert to bitmap,  set the bitmap to imageview

[android-developers] Re: AdWhirl - any experience with it?

2010-01-19 Thread westmeadboy
You can find out how to do all that by going to the appropriate website - admob, quattro etc. They all have good instructions on that. I can only really speak about AdMob because I havent used the others much. There, you get paid per click but each click is not necessarily worth the same amount.

[android-developers] Widget Help

2010-01-19 Thread Kumar Bibek
Hi, I want to build a widget to show the most contacted person. The widget will be displaying only one contact at a time, with some details. But, I also want to keep a button on the widget, so that when the button is clicked (eg, Next), the next most contacted contact details should be shown.

[android-developers] Re: How to increase FPS (now ~20, desired ~40-50)

2010-01-19 Thread Andre
Currently I use: Bitmap bitmap = BitmapFactory.decodeResource(getResources(), R.drawable.spaceship); in that case: bitmap.getConfig() == null; as I mention earlier, I checked all kinds of bitmap configs with little difference in performance On 19 янв, 14:01, skink psk...@gmail.com wrote: On

[android-developers] No output with playing a media file with Android APIDemos Mediaplayer

2010-01-19 Thread Divkis
Hi, I am trying to run a sample media file (.mp4/ H.264 avc1 format) with the APIDemos's Mediaplayer on emulator, but I only see a blank screen. If I understand correctly then support for .mp4 files already exists with Android. Doing logcat on emulator shows the following: $ adb -s

[android-developers] Re: ATTENTION ANDROID TEAM: Take back control of Android.

2010-01-19 Thread OldSkoolMark
Device diversity is both a blessing and a curse. For the variety of reasons already mentioned, even a well-designed infrastructure is not going to provide absolute confidence that apps will work on 'compatible' devices that haven't actually been tested. 10 years ago we saw the same problem with

Re: [android-developers] Widget Help

2010-01-19 Thread Mark Murphy
I want to build a widget to show the most contacted person. The widget will be displaying only one contact at a time, with some details. But, I also want to keep a button on the widget, so that when the button is clicked (eg, Next), the next most contacted contact details should be shown.

[android-developers] how to add search box on google map??

2010-01-19 Thread umar
can any one guide me how can i add Search box on google map??? and point out some locations ?? any help would be appriciated.. -- 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]

2010-01-19 Thread slaman zaaq
flmy sex -- 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,

[android-developers] Hprof dump support in SDK 2.1

2010-01-19 Thread kohlerm
Hi all, It seems ddms now has a dump hprof button (since 2.0?). Though it doesn't seem to work with an Android 1.5 device (HTC Hero) it's greyed out and says that hprof dumps are not supported on this VM. I know who to still get the heap dump anyway, but I'm asking myself Why is that?- Are newer

[android-developers] Re: How to increase FPS (now ~20, desired ~40-50)

2010-01-19 Thread skink
On Jan 19, 1:56 pm, Andre andranik.abra...@gmail.com wrote: Currently I use: Bitmap bitmap = BitmapFactory.decodeResource(getResources(), R.drawable.spaceship); in that case: bitmap.getConfig() == null; hmmm, null is a bit weird. it means that bitmaps config is not any known public

[android-developers] Re: ATTENTION ANDROID TEAM: Take back control of Android.

2010-01-19 Thread JP
String, Thank you for taking the time writing this up. Five stars. I just feel stupid every time I get on the soapbox just to rehash what should long have been addressed by Google/the Android team. I have no idea how to get this across. Diane, Romain and who else from the other side who have been

[android-developers] Re: How Does HttpURLConnection work

2010-01-19 Thread JP
My point is not the theory of sync vs. async but rather the reality that you'll be better off to work off the downloads in sequence. When you drop the TOs low enough, there will be no more than a few seconds that you may lose. The upside, you'll actually get this done... On Jan 18, 10:50 pm,

Re: [android-developers] AdWhirl - any experience with it?

2010-01-19 Thread Greg Donald
On Mon, Jan 18, 2010 at 10:56 PM, Kevin Duffey andjar...@gmail.com wrote: I am curious.. how do you work in ad support into an app? This is one of the business models discussed in other threads, and it seems like providing a lite version with ads, and a pay version is one way to go. Or, just do

Re: [android-developers] Installing app on android device

2010-01-19 Thread fourk xav
Hi, What about if you want to run the application on your DISCONNECTED device? Is it possible or do you must go thru publishing to the market? Thanks in advance. On Mon, Jan 11, 2010 at 4:20 AM, Tommy Hartz droi...@gmail.com wrote: Ah ok thanks! On Sun, Jan 10, 2010 at 9:37 PM, Kevin Duffey

Re: [android-developers] AdWhirl - any experience with it?

2010-01-19 Thread Justin Giles
I agree with Greg (below). I too have a free ad supported full feature version as well as a no ad pay version. When all the coins are counted, I'm making more money with the free version than I am the pay version. Almost twice as much. In regards to the ad companies and performance, I switch

[android-developers] UPnP

2010-01-19 Thread Abhi
Hi, Does anyone have any idea on implementing UPnP in Android? I am working on a Project for which I need my Android phone to talk to UPnP devices directly. Thanks, Abhi -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this

[android-developers] Serious android app problem in Canada

2010-01-19 Thread ian
Hey Candroid developers: Now I hope I'm wrong but it appears as an Android developer in Canada I cannot sell my apps through the |Market, nor can a Canadian customer purchase my paid apps. Are these dire concerns valid? Maybe somebody from the Google mothership could clarify this important

[android-developers] Using the AlarmManager as a timing service.

2010-01-19 Thread Android Development
Hello, I wanted to ask a question regarding the Alarm Manager. I have a requirements of setting long running timers in my application. The minimum duration for my timer is 1 hour...and the maximum may be for 4-5 days. This timer is supposed to run in the background, and when it fires/expires, i

Re: [android-developers] AdWhirl - any experience with it?

2010-01-19 Thread Wayne Wenthin
Does anyone have experience with putting ads on Maps? Since my app is almost completely map driven I would like to start doing the ad thing but don't even know if it is possible. On Tue, Jan 19, 2010 at 6:49 AM, Justin Giles jtgi...@gmail.com wrote: I agree with Greg (below). I too have a

[android-developers] Re: Hprof dump support in SDK 2.1

2010-01-19 Thread Streets Of Boston
It works quite well on 2.1 (and on 2.0, but i'm not sure, i just tried it on 2.1 with my nexus). When you do a hprof-dump and have the proper plugins installed in Eclipse, you get nice charts and graphs of your app's memory usage. I'm not sure how it works, but i think the device dumps a

[android-developers] Re: Click on Notification does not work as expected... (see screencast!):(

2010-01-19 Thread mastix mc
Hi, thanks for the hin, I have now changed the launchmode of my activity to singleTop: and changed the code to look like this: // The PendingIntent to launch our activity if the user selects this // notification final Intent notificationIntent = new Intent(ManagerFactory

Re: [android-developers] Re: How to display XML

2010-01-19 Thread Temitope Akinwande
Thank you for the reply, I will try that. On Mon, Jan 18, 2010 at 9:38 PM, prachi t.prach...@gmail.com wrote: Hii i think it can be done. We can use the function loadUrl and give the url of the xml to be displayed. Or we can store the xml to be displayed in the string variable and display

Re: [android-developers] Using the AlarmManager as a timing service.

2010-01-19 Thread Mark Murphy
I wanted to ask a question regarding the Alarm Manager. I have a requirements of setting long running timers in my application. The minimum duration for my timer is 1 hour...and the maximum may be for 4-5 days. This timer is supposed to run in the background, and when it fires/expires, i

Re: [android-developers] Using the AlarmManager as a timing service.

2010-01-19 Thread Kevin Duffey
Interesting Mark... is there no way to have something wake/start an app up when a condition occurs? I was reading the blog on Screebl, it seemed like with the Location support they can activate based on the location or other conditions of the device. I wasn't under the impression that app was

[android-developers] Re: Click on Notification does not work as expected... (see screencast!):(

2010-01-19 Thread RNekic
In cases where I've needed to do this, I call a method from both onCreate and onNewIntent since, to my knowledge, they don't fire together; one or the other fires depending on the situation. In your Intent processing method, you can either pass in an Intent or have it call getIntent(). Note, if

Re: [android-developers] Using the AlarmManager as a timing service.

2010-01-19 Thread Mark Murphy
Interesting Mark... is there no way to have something wake/start an app up when a condition occurs? Define condition. The OP was inquiring about time, which I would not call a condition. I was reading the blog on Screebl, it seemed like with the Location support they can activate based on

Re: [android-developers] AdWhirl - any experience with it?

2010-01-19 Thread Kevin Duffey
Can one of you guys explain fill rate? I've read the AdMob site.. doesn't quite click with me. Btw, adwhirl is owned by admob, interesting. So if you basically need an app that is downloaded 10's of thousands of times to make a few bucks. By this I mean, if your app is downloaded by 10,000 users,

[android-developers] Re: Click on Notification does not work as expected... (see screencast!):(

2010-01-19 Thread RNekic
Whoops...I wasn't done yet: - Option One: - @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); processMyIntent(getIntent); } @Override protected void

Re: [android-developers] AdWhirl - any experience with it?

2010-01-19 Thread Justin Giles
On Tue, Jan 19, 2010 at 9:59 AM, Kevin Duffey andjar...@gmail.com wrote: Can one of you guys explain fill rate? I've read the AdMob site.. doesn't quite click with me. Btw, adwhirl is owned by admob, interesting. So if you basically need an app that is downloaded 10's of thousands of times to

Re: [android-developers] Re: Scaling icons on MapActivity with zoom

2010-01-19 Thread TreKing
On Mon, Jan 18, 2010 at 10:50 PM, Kevin Duffey andjar...@gmail.com wrote: I'd first like to avoid loading different image sizes for each zoom level for each item I want to place on the map. Here's the thing.. in my app, it shows state parks. If you're zoomed out far enough, you're not

[android-developers] Re: Modal dialog

2010-01-19 Thread jotobjects
Looks like there is enough material to make a FAQ, something like Pseudo Modal Dialog Pattern http://developer.android.com/resources/faq/commontasks.html On Jan 18, 12:19 pm, Dianne Hackborn hack...@android.com wrote: On Mon, Jan 18, 2010 at 10:47 AM, guiha...@gmail.com

[android-developers] Re: ATTENTION ANDROID TEAM: Take back control of Android.

2010-01-19 Thread Maps.Huge.Info (Maps API Guru)
Problem is, half the time we don't know. Users post 1* Market comments saying Force closes on Droid or Doesn't work on Samsung Moment, and unless you have that specific handset to test on, you're SOL. You sanity check on an emulator instance of the same resolution and OS version, and nothing

Re: [android-developers] Hprof dump support in SDK 2.1

2010-01-19 Thread Romain Guy
This button just performs a regular dump and DDMS takes care of downloading and converting the dump in the hprof format. On Tue, Jan 19, 2010 at 6:13 AM, kohlerm markus.koh...@gmail.com wrote: Hi all, It seems ddms now has a dump hprof button (since 2.0?). Though it doesn't seem to work with

[android-developers] Re: ATTENTION ANDROID TEAM: Take back control of Android.

2010-01-19 Thread Maps.Huge.Info (Maps API Guru)
I think there is a fairly easily implemented solution to the problem of device and OS diversification. I've been using this myself for months and it works very well. For Radar Now! I've established a beta test community of users who have volunteered to try out new versions of the app and even new

[android-developers] Constructing shapes from other objects

2010-01-19 Thread Carl Whalley
In graphics packages you can start with a rectangle, make it a rounded, then say add another triangle and where they meet join them to create a path, which can then be treat as a single object, e.g. filled with a gradient. Can this be done with Androids graphics? I'm trying to make, for example, a

Re: [android-developers] Installing app on android device

2010-01-19 Thread Temitope Akinwande
You can install apps on your device without publishing to the market, and they should run. -Tope On Tue, Jan 19, 2010 at 7:43 AM, fourk xav fou...@gmail.com wrote: Hi, What about if you want to run the application on your DISCONNECTED device? Is it possible or do you must go thru publishing

[android-developers] Query ringtone???

2010-01-19 Thread Boozel
please can someone help me get the name of my current ringtone? -- 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] Get current ringtone name?

2010-01-19 Thread Boozel
please can some one help me. i'm trying to get the name of the current ring tone, this is the code i have so far but cant get it to work. Uri currentTone=Settings.System.DEFAULT_RINGTONE_URI; Cursor cur = managedQuery(currentTone, null, null, null, null); cur.getString(0); Thank You. -- You

[android-developers] Cant get data from my service

2010-01-19 Thread draf...@gmail.com
I have a service that is running fine and I can see the data collecting in the logcat, However after creating an aidl and trying to get the information from the service to my main activity I have hit a problem. I just cant seem to get the data to pass across at all, I always get a null pointer

[android-developers] Re: ATTENTION ANDROID TEAM: Take back control of Android.

2010-01-19 Thread karthikr
This may be slightly off topic, But still the google team should look at expanding the android market to different countries. Seems apple now has nearly 97% of all mobile application downloads. When the spp store wasreleased apps were available in around 80 countries and for around the same

[android-developers] Problem with ListPreference in preference view

2010-01-19 Thread Chris.H
This is my first Android app (which is a soft keyboard, with dvorak layout) and so far it has gone pretty smoothly (either because or despite working from the sample code). I've had some problems (with special/swedish characters) that I've managed to take care of, but this problem I can't figure

[android-developers] is there a way to know exclude the invisible face intersected with a pick ray?

2010-01-19 Thread Jian Chen
Hi guys, Imagining below steps: 1. u draw a cube on the screen 2. the cube can be rotated per x/y axis 3. then we can picked up the nearest face with the classic method of a pick ray 4. Now imagine there is a hole at the cube's visible face, and u clicked the hole 5. The

[android-developers] Triggering dynamically a NUMERIC keyboard with no use of TextView component.

2010-01-19 Thread Lobo
Hi, Currently, im porting a J2ME app to the Android platform. Ive already done this process, though some bugs need to be fixed. Lately, Ive been struggling to solve an issue related with the Android's virtual keyboard: My app launches a screen, together with a virtual QUERTY keyboard, requesting

[android-developers] simple web search based on location

2010-01-19 Thread sunny
Hi Folks, wondering if any of you can help. This is what I am trying to do: simple app to get list of addresses I am interested in based on my current location. I get the current location using location services. Now, based on this current location I want to do a search on business places without

[android-developers] trouble processing java/lang/Object.class

2010-01-19 Thread JJS
I received the following message and found several others who had seen it but no solution. So I have included how I finally fixed it. (I'm using Eclipse version 3.4.2 and Android 1.5.) trouble processing java/lang/Object.class: [2010-01-17 14:32:29 - whatever] Attempt to include a core VM class

[android-developers] Strange crashing while using OpenGL

2010-01-19 Thread Ian
Hello, I am currently developing an application that uses OpenGL with the Android 1.6 SDK. I am testing on both a Nexus One and an I/O Device (Magic). The application runs perfectly on the Nexus. On the Magic, the application crashes 50% of the time on the first frame with a segmentation fault

[android-developers] SMS appliaction-- would someone would like to help?

2010-01-19 Thread Jack Hsu
Hi all, Sorry to bother you all. I have a proposal that I want to look someone to help me to develop a new SMS ( short message system) in Android platform to replace the SMS in android system. And I would like to out source. Any one would like to take this job? this SMS application should be: 1.

[android-developers] Starting Google Maps at pre-specified location

2010-01-19 Thread Denis
Hi Group, I have one problem with Google Maps, while opening them at some location. How could that be possible for user to specify city first (e.g. type in EditText field London) then press a button and see London on the map? I've succeded in opening GMaps at some pre- specified location, but

[android-developers] self steering car using Camera.

2010-01-19 Thread cellurl
Any interest in building a self-steering car using Android camera? See block diagram here. http://docs.google.com/View?id=dz28fm9_129gxg6sfgn Sorry, slightly off topic... Jim -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this

[android-developers] Re: china government blocks google groups,what should we do ?

2010-01-19 Thread YH
maybe you can use https,i think it's works. On 1月18日, 下午12时08分, Barry Wei barrywei.uyg...@gmail.com wrote: as you've known all, it's hard for us(here in china) go online via this network. we have to use a proxy or change url to visit android groups. is there any way to get this easier? or

[android-developers] stt emulator

2010-01-19 Thread a...@elguides.cc
Is there a stt (speech recognition) and tts emulator? -- 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: setting ANDROID ENVIRONMENT IN UBUNTU8.0 operating system

2010-01-19 Thread Moo
I had the same problem using Karmic. I followed Vineus's directions and works perfectly. Thanks! On Dec 4 2009, 4:04 pm, Vineus vin...@gmail.com wrote: On Dec 2, 10:58 am, Ram rama.mohan...@gmail.com wrote: I am trying to work the android development in UBUNTU 8.0 OS. I installed Eclipse

[android-developers] Posting data using HTTP POST to a Servlet

2010-01-19 Thread arun
Hi, I am trying to use the below to post my data to a servlet but seems like not working. http://www.androidsnippets.org/snippets/36/ I am posting to a servlet in Tomcat in my local machine using host: 192.168.0.1:80 Basically I am posting the data to, 1. Save into database using servlet 2.

[android-developers] Vertical Text Aligment for Key Label in Softkeyboard example

2010-01-19 Thread Wik
Would there anyway to display the text for key label in vertical aligment? For example, display 1 2 3 in a single key instead of 123. I tried to use \n between the numbers but it didn't work. Would there have any other way to make the text be vertical aligment or create a table form inside a

[android-developers] Re: Accelerometer on Motorola Droid

2010-01-19 Thread PhoenixofMT
I can't provide much on this. I'm not a developer, but I may be able to provide some insight. I've been wanting to find a way to calibrate the accelerometers on my droid since I installed the tricorder app. It bugs me that the X and Y axes are off by about .2 ms^-2 in both orientations. In my

[android-developers] Audio Output Analysis

2010-01-19 Thread Dan Bjorge
I was playing around with some of the live wallpapers and thought it'd be neat to try to make something like the frequency/waveform visualization wallpapers, but I'm not sure there's an API to get the audio output data from the device. I know you can use AudioRecords to get this sort of data from

[android-developers] Re: Blocking on a Socket read operation while in sleep mode

2010-01-19 Thread Raj
Yes, the CPU is OFF when the device goes to sleep. The socket is non- responsive at this time. Hope that helpps. On Dec 28 2009, 8:52 pm, Omer Gilad omer.gi...@gmail.com wrote: I have code that runs in the background and holds a connected Socket and it's InputStream. It calls read() infinitely

[android-developers] Re: Installing app on android device

2010-01-19 Thread String
On Jan 19, 2:43 pm, fourk xav fou...@gmail.com wrote: What about if you want to run the application on your DISCONNECTED device? You need to get the APK to the device somehow. By far the most direct method is via USB, but if this isn't an option for some reason, you still need to bridge that

[android-developers] is AndroidHttpClient deprecated?

2010-01-19 Thread eli
Are most of the classes in android.net.http.* deprecated? There is no javadoc except for SslCertificate and SslError but most classes are still in the sdk? Can I still use it or java.net.* is the way to go? -- You received this message because you are subscribed to the Google Groups Android

[android-developers] hi

2010-01-19 Thread rakesh rapaka
hi, iam into mobile game development. i have been developing games in j2me. now i want to develop for android can anyone suggest best tutorial for android game development. where to start and how to start is my big confusion. thanks in advance -- rakesh rapaka -- You received this message

[android-developers] paly youtube fail on android platform

2010-01-19 Thread jason
below is my log message: # D/dalvikvm( 1919): GC freed 84 objects / 3544 bytes in 177ms I/ActivityManager( 1871): Starting activity: Intent { act=android.intent.action.MAIN cat= [android.intent.category.LAUNCHER] flg=0x1020 cmp=com.google.android.youtube/.HomeActivity } I/ActivityManager(

[android-developers] Impossible to create socket inside Service

2010-01-19 Thread Thomas Geulen
Hi, i have a big problem with my Service. My Service-Class overrides the onStart method inherited from Service. I can not create a socket with a specific address and port inside this Service. Every time my application hangs there and the emulator shows a message box that there is no response from

[android-developers] Moving Objects.

2010-01-19 Thread TheGlad
Hey, guys, I was trying to find a good tutorial on how to move objects. Let's say I've created a shape: public class ActivityTest extends Activity { CustomDrawableView mCustomDrawableView; @Override protected void onCreate(Bundle savedInstanceState) {

[android-developers] Forensics Tool (A lil help please :])

2010-01-19 Thread seano
Im currently creating a app that will allow the user to browse the file system of the Android and look at 'suspicious' applications or files with the phone. The idea is to be able to manually look through the file system and look at individual files and there information, such as time and date

[android-developers] How to get the USB device list of an Android device?

2010-01-19 Thread Steel Tiger
Dear Sirs, In my development environment, more than one USB device can be plugined in the Android device. If I want to get the USB device list of an Android device. What should I do? Of course, if there is only one USB device, it seems that we can access it as sdcard. -- You received this message

[android-developers] Re: onActivityResult is called immediately after startActivityForResult

2010-01-19 Thread Pete Slater
Could you post your exact configuration from your AndroidManifest for the activities that you are calling from and returning a result from? The reason I ask is that I am struggling with a couple of activities in my app. One should be calling the other using StartActivityForResult but I am getting

[android-developers] How to speed up Eclipse incremental build?

2010-01-19 Thread Patrick Mezard
Hello, This is probably more an Eclipse question but pointers are welcome. Here are some build times for an application, based on equivalent ant tasks: clean, build: 17s incremental build: 8s debug: 1mn46s build is equivalent to the ant task target name=build

[android-developers] Website to app

2010-01-19 Thread codeninja
Hi all I know that this was asked before, but he one I found only pointed the person to the android sdk and documentation and I'm sre that there must be an easier way for doing what I wanna do. OK, so I have a mobile site I built specifically for his purpose, which is sitting online as we speak,

[android-developers] How to store and retrieve email id and password using SharedPreferences?

2010-01-19 Thread pranav09
Hi all, I am developing an application which requires to store email id and password, so that the user can directly redirect to his home page if the user is already exists. A few day ago i read that SharedPreferences is used for storing and retrieving the data. How can i use SharedPreferences

[android-developers] Populated database inside the app package (HOW-TO)?

2010-01-19 Thread TheGlad
Hello, fellow developers! I'm trying to bind a pre-populated database (.db file) to my application, so that I could use the data right away. I cannot, however, figure out a way to: 1) Store the .db file inside the application. 2) Access the database inside the application. Please, can someone

[android-developers] Re: Best way to launch Messaging app via intent

2010-01-19 Thread dye...@wivsys.com
By setting the action to ACTION_VIEW and type to vnd.android-dir/mms- sms on the calling intent, multiple phone numbers can be passed via the address attribute using a semi-colon delimited list: a href=http://andmobidev.blogspot.com/2010/01/launching-smsmessages- activity-using.html

[android-developers] Looking for Stellar Android Developer/Contract in Seattle

2010-01-19 Thread FlyDog
If you're interested, please contact me. This is for a company in downtown Seattle working. ani...@seattletechsearch.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

[android-developers] Re: Getting Current Signal Strength

2010-01-19 Thread None
Go to Settings-About Phone-Status and there is an option there for Signal Strength. On Jan 14, 10:14 pm, dolsen danec...@gmail.com wrote: I am trying to figure out how to get the current signal strength of the Android 2.1 device. So far I can only find access to the SignalStrength object if I

[android-developers] Re: Best way to launch Messaging app via intent

2010-01-19 Thread dye...@wivsys.com
When setting the action to ACTION_VIEW and type to vnd.android-dir/ mms-sms on the calling intent, multiple phone numbers can be passed via the address attribute using a semi-colon delimited list: http://andmobidev.blogspot.com/2010/01/launching-smsmessages-activity-using.html Don't know if this

[android-developers] android, How develop a vedio call programe?

2010-01-19 Thread Jobs He
hello! I am developing a video call programe,but I have nothing about it . Who can help? I need some documents or othors about it. -- 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: Best way to launch Messaging app via intent

2010-01-19 Thread dye...@wivsys.com
When setting the action to ACTION_VIEW and type to vnd.android-dir/ mms-sms on the calling intent, multiple phone numbers can be passed via the address attribute using a semi-colon delimited list: http://andmobidev.blogspot.com/2010/01/launching-smsmessages-activity-using.html Don't know if this

[android-developers] myTouch 3G developer phone

2010-01-19 Thread heretic619
I have a myTouch 3G that currently is not connected to any service. I have been trying to use it as a dev phone but eclipse wont see it as proper target device. Does it need service for it to work? -- You received this message because you are subscribed to the Google Groups Android Developers

[android-developers] Service within a Thread? Thread within a Service?

2010-01-19 Thread Flapjack
Please forgive my ignorance, I am new to Java and Android. I would like to retrieve remote data and display it within my activity. To prevent tying up to UI, I understand that I can do this in another thread. (I thought I could just-as-well fetch this remote data from within a service, but that

[android-developers] How to feed MediaPlayer with AMR chunks properly

2010-01-19 Thread Marek
Dear folks, I did some research through the forums and there are similar questions but unfortunately still without answer. My goal is to stream AMR stream which I'm reassembling from udp datagrams.According to the API there's officially supported streaming using AudioTrack, but it's supporting

[android-developers] Regarding SharedPreferences

2010-01-19 Thread pranav09
Hi, Can you give me an example with the use of SharedPrefereneces which store and retrieve the email and password by calling .net web service? 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] How to disable user interaction arising from a long press to an EditText

2010-01-19 Thread MMC2
A long press on an EditText brings up a menu of options that the user can select. The only messages or options that I want users of my apps to get, I want to come from me via the app. How do you disable this so that nothing happens when you long press the EditText? What other situations like this

  1   2   3   >