[android-developers] Re: Setting single line text in button

2010-06-29 Thread grace
hi, use button.setLines() method to restrict it to single line On Jun 16, 8:17 am, Dhawal dhawal.sh...@gmail.com wrote: Hi, I am creating a button widget with icon and text. Single word text is getting divided into two lines. There is enough room on the screen for the button widget to grow.

[android-developers] Re: Animating App Widgets

2010-06-29 Thread James W
When you talking about animating every 100ms, you mean a short term animation for a second or thereabouts, triggered by your 6 hour update, right? Similar to the occaisonal weather animation on the HTC Clock widget? If so, then you can use the ProgressBar in your widget layout, set to

[android-developers] Is Android support the RC4 encryption

2010-06-29 Thread Mohammad Siddiqui
Hi everyone Is android support the RC4 encryption and decryption.in my application when i try to get the RC4 intance( Cipher.getInstance(RC4 ) ) it gives the java.security.NoSuchAlgorithmException. Thanks -- You received this message because you are subscribed to the Google Groups Android

[android-developers] Re: Passing data with PendingIntent

2010-06-29 Thread prachi
hiii we cant set extras with pending indentbt yaa there is one option in flags to retain the extras of the first indent...or the last one jst go through the option available for flag variable may b dat can help u. On Jun 29, 8:24 am,

[android-developers] Re: How to dismiss the soft keyboard

2010-06-29 Thread jamesc
Have a look at View.onKeyUp() or View.onKeyDown() to handle to keypresses. As for the IME, take a look at this recent post: http://groups.google.com/group/android-developers/browse_thread/thread/22674208e500cdf0 On Jun 28, 8:23 am, skooter500 skooter...@gmail.com wrote: Hi I have a TextView

[android-developers] What exactly is Handler and Loopers in android ?

2010-06-29 Thread sagare
Hi, I am very confused about handlers and looper can anyone plz explain it in simple terms to me any good links would be great. Thanks, Sagar -- 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: Display customized Soft keyboard at run time

2010-06-29 Thread jamesc
I'm pretty sure that you can't impose an IME change on a user. As far as I understand, it's a security issue (if you force someone to use a given IME, then you can potentially capture keypresses and all the issues related to that). You'd have to 'fix' the keyboard to that particular app, which

[android-developers] How to send a photo over Bluetooth

2010-06-29 Thread Gorka
Hello, I am trying to send a photo from my Android device to a laptop via Bluetooth. Right now I have a gallery on the screen where the photos are depicted. What I want to do is to click a photo and directly send it to the laptop. All the Bluetooth stuff works fine but what I don´t know how to do

[android-developers] Re: Accidentally made my paid app free

2010-06-29 Thread MobDev
owh oke,that explains it somewhat.. Sorry it sounded kinda of strange ;) On 25 jun, 20:28, TreKing treking...@gmail.com wrote: On Fri, Jun 25, 2010 at 12:49 PM, Nathan critter...@crittermap.com wrote: Why would there be any downloads and ratings if I immediately unpublished it, so I

[android-developers] Re: Layout Issue: Status Bar Space Remains Empty || Status Bar Animation

2010-06-29 Thread scheme
Is there any progress? I'm also facing the same issue. On May 15, 7:44 pm, Mariano Kamp mariano.k...@gmail.com wrote: Meanwhile I've also seen this layout issue in the emulator. On Wed, May 12, 2010 at 6:58 PM, Mariano Kamp mariano.k...@gmail.comwrote: Ok, I see. That also means that I

[android-developers] Re: How to send a photo over Bluetooth

2010-06-29 Thread Gorka
I am sorry that I forgot to say that the photos are in JPEG format On 29 jun, 09:26, Gorka gork...@gmail.com wrote: Hello, I am trying to send a photo from my Android device to a laptop via Bluetooth. Right now I have a gallery on the screen where the photos are depicted. What I want to do

[android-developers] Re: Android 2.2, Stagefright, and HTTP Progressive Streaming

2010-06-29 Thread qh.p...@gmail.com
interesting question any response? On 23 juin, 21:22, dindin dinesh.nadara...@gmail.com wrote: Hi: http://developer.android.com/sdk/android-2.2-highlights.html On above URL page, there is mention of a new API (Stagefright) for the MediaPlayer to source from a local file or HTTP for

[android-developers] Re: How to know if child activity exit by unexpected exception (onActivityResult() is not called)

2010-06-29 Thread Alexey Kryshen
On Jun 28, 7:37 pm, TreKing treking...@gmail.com wrote: On Wed, Jun 23, 2010 at 7:57 AM, Alexey Kryshen a.krys...@gmail.com wrote: If child activity started by the startActivityForResult() exit by unexpected exception the onActivityResult() is not called and I have no any ideas how can I

[android-developers] Re: Changing MAIN activity mucks up application

2010-06-29 Thread Neilz
Ok, well for the sake of completeness, here's the solution in case someone else has the problem. You need to keep your old application entry in the manifest, and include a 'MAIN' clause for it. And then the old class itself needs to be kept, and just launches an intent for the proper main class.

[android-developers] Resolution Problem

2010-06-29 Thread Engin Arslan
Hi all, In may application I support multi-language. For this purpose, I set locale as user choice as follows: languageToLoad = language code here; Locale locale = new Locale(languageToLoad); Locale.setDefault(locale);

[android-developers] Resolution Problem in Nexus One

2010-06-29 Thread Engin Arslan
Hi all, In may application I support multi-language. For this purpose, I set locale as user choice as follows: languageToLoad = language code here; Locale locale = new Locale(languageToLoad); Locale.setDefault(locale);

[android-developers] Holding On to Camera

2010-06-29 Thread perumal316
Hi, Writing an application to invoke the camera can be done but I want to write an application to hold on to the camera resources. Meaning while this application is running, camera cannot be accessed by other applications. Is this possible? The aim is as long as the application is running camera

[android-developers] Re: soft keyboard

2010-06-29 Thread Lieuwe
On Jun 28, 6:35 pm, YuviDroid yuvidr...@gmail.com wrote: I found this to work for me: getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_STATE_ALWAYS_HIDDEN); (found here:http://stackoverflow.com/questions/1109022/how-to-close-hide-the-andr... ) That doesn't seem to do

[android-developers] Android Emma Code Coverage

2010-06-29 Thread raghava
Hi All, I was trying to generate the Emma code coverage report but it is giving me 0% coverage every time I run it. In this group I have seen a discussion regarding the same and the resolution given was as follows: Finally, the emma code coverage measurement is working for me (for a custom

[android-developers] Re: Any chance to deactivate the lock pattern in Froyo from code?

2010-06-29 Thread LeveloKment
Thanks for your response Dianne. If I understand you right, than the only option to provide more flexibility to the users is still an option in Android itself. The DeviceManager can then disallow such temporary lowering of the lock level. From my point of view an always on security feature will

[android-developers] facebook-android-sdk of Github Issue

2010-06-29 Thread Sohan badaya
Hi All, I have been facing problem in Facebook. I am using facebook-android- sdk of Github to connect Facebook from android. When i try to connect , after login page it shows me error You do not have permission to open this page. fbconnect://success/#access_token=sometoken value . I am not

[android-developers] Re: Mail Java API issues

2010-06-29 Thread jack.n
[Solved] Added uses-permission android:name=android.permission.INTERNET / to manifest -- 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,

[android-developers] Audio Output pending ?

2010-06-29 Thread mac-systems
Hello, i have a Alarm which invoke a BroadcastReciever. This BroadcastReciever enqueues an Task into my Service. The Task get executed. On a failure i that Task i play a Sound (mostly for me at the moment so i can check via aLogcat to see the stacktrace). If the Phone (Nexus One) is sleeping and

[android-developers] NPE on WebView.onWindowFocusChanged

2010-06-29 Thread GJTorikian
Howdy— I'm getting crash reports from my app out in the wild. Problem is, I don't know what's causing it. The only place I'm using WebKit is when constructing an -in-app help browser. Here's the full stack trace: java.lang.NullPointerException at

[android-developers] How can I get a signal which indicating the web server is down?

2010-06-29 Thread Kenneth WON
Hi, all, I have an app, which needed to communicating with the web server (which hold by myself). Sometimes, the server will down. Now, what I want to know is: How can I get a signal which indicating the web server is down? When I using this: HttpResponse httpResponse = new

[android-developers] Re: Android 2.2, Stagefright, and HTTP Progressive Streaming

2010-06-29 Thread dindin
any response? None yet! Maybe it is still too new. I cannot find much details in the API documentation either. -- 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] Re: How can I get a signal which indicating the web server is down?

2010-06-29 Thread EdKawas
You can perform an HTTP GET and if the response code is 404 or if you get a timeout, then the page is down. HTTP Head might also prove useful for you. You should be able to specify the timeout period too so that you dont wait too long. Eddie On Jun 29, 7:28 am, Kenneth WON kenneth...@gmail.com

[android-developers] Re: OpenGL EGL 1.0 Context sharing does not work

2010-06-29 Thread OpenG
I have no problem creating two separate GL contexts. It works and no errors are generated (tested on G1 (1.6) and Milestone (2.1)). But the problem is that resources sharing between contexts does not work as it is described in GLES 1.0 specification. So I am not sure does Android OGL

Re: [android-developers] Re: Mapping (x,y) to (latitude,longitude)

2010-06-29 Thread Pedro Teixeira
I got it just by turning into a float and dividing by 1e6 GeoPoint MapCenter = mapView.getMapCenter(); float centerLatitude = MapCenter.getLatitudeE6()/ 100; float centerLongitude = MapCenter.getLongitudeE6()/ 100; Re: If the center is for

[android-developers] widget on lockscreen

2010-06-29 Thread manigault
Hi all i am developing music player and i want to put some controls when screen is locked. Is there a way to put widget when screen is lock ? The documentation says that For example, the home screen has one way of viewing widgets, but the lock screen could also contain widgets, but i couldn't find

[android-developers] How To Override the “Back” button so it doesn’t Finish() my Activity?

2010-06-29 Thread draf...@gmail.com
I currently have an Activity that when it gets displayed a Notification will also get displayed in the Notification bar. This is so that when the User presses home and the Activity gets pushed to the background they can get back to the Activity via the Notification. The problem arises when a

Re: [android-developers] Re: Mapping (x,y) to (latitude,longitude)

2010-06-29 Thread Frank Weiss
Ah hah! So that's a lesson in Java for you. The correct way is: float centerLatitude = ((float) MapCenter.getLatitudeE6())/100.; -- 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] How To Override the “Back ” button so it doesn’t Finish() my Activity?

2010-06-29 Thread Sean Hodges
When the user presses the back button, the activity in the foreground is stopped (and destroyed). This is what always happens, for all apps. What you really want is to restore the state of your activity when it is re-launched. See:

Re: [android-developers] Re: Mapping (x,y) to (latitude,longitude)

2010-06-29 Thread Brad Gies
Ah.. good... I was just going to ask you if you were casting it to an integer somewhere :). Hopefully, you're on your way again :). On 29/06/2010 8:15 AM, Pedro Teixeira wrote: I got it just by turning into a float and dividing by 1e6 GeoPoint MapCenter = mapView.getMapCenter(); float

[android-developers] Re: How To Override the “Back ” button so it doesn’t Finish() my Activity?

2010-06-29 Thread HeHe
it seems that overrriding onKeyDown() method of your activity and returning with a true value perhaps may serve your need. On Jun 29, 8:42 am, draf...@gmail.com draf...@gmail.com wrote: I currently have an Activity that when it gets displayed a Notification will also get displayed in the

Re: [android-developers] widget on lockscreen

2010-06-29 Thread Dianne Hackborn
Sorry this is not currently supported. That comment in the documentation is simply describing what could be done in the future. On Tue, Jun 29, 2010 at 8:22 AM, manigault manig...@gmail.com wrote: Hi all i am developing music player and i want to put some controls when screen is locked. Is

Re: [android-developers] Android Application design?

2010-06-29 Thread TreKing
On Fri, Jun 25, 2010 at 4:22 AM, sagare sagar.ekb...@gmail.com wrote: 1) Can i use some design pattern like MVC or something in my android application Sure, you can use any design pattern you like in your app. Some will work better than others, of course, given the way the Android Framework

Re: [android-developers] Re: Any chance to deactivate the lock pattern in Froyo from code?

2010-06-29 Thread Dianne Hackborn
On Tue, Jun 29, 2010 at 4:53 AM, LeveloKment levelokm...@googlemail.comwrote: If I understand you right, than the only option to provide more flexibility to the users is still an option in Android itself. The DeviceManager can then disallow such temporary lowering of the lock level. Sorry I

[android-developers] Service getting Killed

2010-06-29 Thread Tommy
Hey everyone, I have a service in my app the creates an alarm and runs a check ever X minutes. I am new to android and I was wondering is there a way to prevent another app such as ATK (advanced task killer) from kill my service/alarms? It seems that if I normally close the app my alarms still

[android-developers] Re: PNG quality in WebView based app

2010-06-29 Thread Mathias Lin
I experienced the same problem, but in my case I don't load the the image remotely. I load the image locally from the sd card. The original image is very clear and uncompressed. I tried different formats as well (png, jpg). The only solution I found was to divide the large image into multiple

Re: [android-developers] Service getting Killed

2010-06-29 Thread Mark Murphy
I have a service in my app the creates an alarm and runs a check ever X minutes. I am new to android and I was wondering is there a way to prevent another app such as ATK (advanced task killer) from kill my service/alarms? No, but Android 2.2 fixes the problem of task killers clearing out

Re: [android-developers] Re: Dialog is leaked on orientation change

2010-06-29 Thread TreKing
On Sat, Jun 26, 2010 at 1:20 AM, Zsolt Vasvari zvasv...@gmail.com wrote: Here's an example of what I do, a simple MessageDialog class. Doesn't look so simple. Looks like you re-invented the Dialog class. And it looks like you have to keep references to all dialogs and remember to save and

Re: [android-developers] Re: Best httpclient re-use stategy

2010-06-29 Thread Mariano Kamp
On Mon, Jun 28, 2010 at 1:31 PM, David dago...@gmail.com wrote: Ok, thanks for this advice. So you decide to manage preference by yourself using the filesystem directly ? I only do it for the two(2) preferences where I frequently do a write. For 99% of my preferences I still use the normal

Re: [android-developers] How To Override the “Back ” button so it doesn’t Finish() my Activity?

2010-06-29 Thread Frank Weiss
I currently have an Activity that when it gets displayed a Notification will also get displayed in the Notification bar. I think that's incorrect usage of the notification area. It's for showing status changes and allowing the user to respond to them. I think you're trying to use it as a task

RE: [android-developers] Service getting Killed

2010-06-29 Thread Tommy
Ah well that's a bummer, Hopefully 2.2 fixes that. Thanks for your fast response. -Original Message- From: android-developers@googlegroups.com [mailto:android-develop...@googlegroups.com] On Behalf Of Mark Murphy Sent: Tuesday, June 29, 2010 1:39 PM To: android-developers@googlegroups.com

[android-developers] Basic OpenGL ES Texture problem

2010-06-29 Thread iconnary
I'm having great difficulty getting basic textures to work in an OpenGL ES app on my Droid (2.1-update1). I trying to render a simple textured quad - four vertices, two faces, with normals and texture coords. When rendered, the texture is garbled and full of static, similar to TV noise. The

[android-developers] Don't see YouTube thumbnails anymore on Froyo

2010-06-29 Thread Mariano Kamp
Hi. using a WebView with Froyo I don't see the YouTube thumbnails anymore. WebViewClient.shouldOverrideUrlLoading() is not called in Froyo, but was called before. Please check out the example below. With Pre-Froyo you would see a YouTube thumbnail two/thirds into the article, with Froyo you

[android-developers] Where is android.provider.Gmail

2010-06-29 Thread Satya
I have installed Android SDK 2.2, Tools, API, Samples, Documentation, Google APIs, USB driver package using the eclipse plug-in. While developing a sample application, I wanted to access android.provider.Gmail but cannot find it in classpath. Where can I find these classes related to standard

[android-developers] Re: Speech Recognition

2010-06-29 Thread carlrice
You need the Voice Search application installed. Some phones don't ship with this, it's not in the market and I don't think there is a legit channel to obtain VoiceSearch.apk (but it's out there) which is turning out to be a problem for me too on some Sense UI phones. Side note, if anyone reading

[android-developers] Can I start a new activity that ’s not specified in the AndroidManifst.xml file?

2010-06-29 Thread Snap
I'm trying to write some dynamic code that I load a new class that's supposed to be an Activity and I want to start it, but using the regular startActivity(Intent) wants the Activity to be Declared in the AndroidManifest.xml file. Any clue? -- You received this message because you are

[android-developers] Nexus One Multi Touch Email

2010-06-29 Thread egge
Why doesn't the Nexus One have multi touch for emails? Is there any way installing this feature? -- 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

[android-developers] change sender / from address in SMS message

2010-06-29 Thread Scott Sheppard
I want to specify the from address when sending an SMS message. Is there a way to specify or change the from address in an SMS message via code? -- 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] neighboringcellinfo always null

2010-06-29 Thread ckaatz
I am working on a little project for logging network data. Probably i ´ve tried everything to get the neighboring cells. My Device is an Samsung i7500 with android 2.1 update 1. Even when i am trying with other Programms, like Netmonitor from the Market, i never get any Neighboring cell. Is it

[android-developers] Testing voice recognition

2010-06-29 Thread go_dores
I am trying to test an app that uses voice recognition. I understand through my own tests and through Googling that the emulators don't support voice recognition. Specifically, when I try to run my test it gives this error. No Activity found to handle Intent {

[android-developers] crazy nut

2010-06-29 Thread الطير الزاجل
crazy nut http://jumamedia.net/main/?video=showshow=200#player -- 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] Error in an XML file eclipse

2010-06-29 Thread boonx
Hi All, I am new to android development and I am trying out the HelloWorld example. Seems realy simple but eclipse seems to have some problems. Tried searching for a solution but couldn't find any. Maybe one of you can put me on the right track. Pretty frustrated here. I get an error when I want

[android-developers] Android Game Development Scaling

2010-06-29 Thread General1337
Hello, We're looking for a method to properly scale our textures and world. The current method we're using is having an arbitrary world unit which calculates the screen resolution and receives the size of a pixel on all resolutions. However is there an easier way of implementing a scaling method

[android-developers] Re: Change Text color and text size in listview

2010-06-29 Thread prerna
Hi, I have a similar problem and was wondering if anyone got the solution to this. Thanks, Prerna On May 12, 6:14 am, ena enu1...@gmail.com wrote: In my project im Multiple choice listin this all text view in white color...i want to change text color... in program im use simple xml

[android-developers] Oriented marker

2010-06-29 Thread ENSI
Hi, as i'm working on a google map application,i would like to use an arrow as a marker that should be oriented to another marker (destination). is there any suggestion? i've read that i can use a compass and then use its direction,using many markers for each direction. should i then custum my

[android-developers] How to avoid the user being offered the option to Open a widget after installation from Android Market

2010-06-29 Thread Mark M
Hi, I am experiencing that after downloading and installing my widget from Android Market the user is displayed two buttons in the market app: Open and Uninstall. If the user presses Open he is presented with a Launch error note. It does not make sense to open the widget from the market app just

[android-developers] Run the emulator with -gps option

2010-06-29 Thread Hightower
Hi All, I am trying to run the emulator with gps data (nmea messages; -gps option) available on the socket server. I am trying: emulator -avd Test -gps telnet::5000 or telnet:localhost: 5000 but nothing works. I am sure that data are available beacuse if I type telnet localhost 5000 at the

[android-developers] Query SMS by Message Body

2010-06-29 Thread Chandana Napagoda
Hi all, I need to query SMS message by message body. As example If i need to find the all messages which has HELLO in There message body. Is this possible. I'm relay appreciate your comments. Regards, Chandana -- You received this message because you are subscribed to the Google Groups

[android-developers] Speech Recognizer (RecognizerIntent.ACTION_RECOGNIZE_SPEECH) Not found

2010-06-29 Thread carlrice
I've been noticing a couple requests from users (mostly Sense UI as far as I can tell) who cannot use my heavily voice reliant application because they do not have this Activity/Intent (RecognizerIntent.ACTION_RECOGNIZE_SPEECH). So my questions are these... A. Which app in the market (similar to

[android-developers] IllegalStateException Listview

2010-06-29 Thread myandroid works
I have a problem which i could not resolve for days now. I have an android application which loads a list in the tabview, and there are 3 tabs and the last one is a settings page which is made with android Preference Screen. When i click the last tab, and click on one preference i load an activity

[android-developers] how to create a new image from multiple tiles

2010-06-29 Thread nyarlathotep almighty
hi there, i have a few of 32x32 tiles in a bitmap array and i would like to loop through them one by one and add them all together in 1 big image. each new tile is supposed to be located next of the previous one in a 4x3 grid for example.. so i would like to do that: (b1=bitmap1,

[android-developers] finding screen origin

2010-06-29 Thread nchubrich
I've looked at MotionEvents on two different phones (the Nexus 1 and the Sprint EVO 4G). Using just the ordinary Hello Android view (i.e. attaching the touch listener to the Linear Layout), I find experimentally I get two different ranges for the two phones: the Evo 4G is X: 10 - 470, Y:-60 -

Re: [android-developers] ListView scrolling

2010-06-29 Thread Wallas F. Morais
Have a video of the Google IO 2009, that you have more informations about that, and how you make this more fast and efficent. http://www.youtube.com/watch?v=N6YdwzAvwOAfeature=player_embedded 2010/6/27 Scott Warfield malam...@gmail.com I have a ListView with a scrolling issue. The Array

Re: [android-developers] Can I put a donation link in my free app?

2010-06-29 Thread Wallas F. Morais
you need create in your layout a component that with a activity that open the intent native browser in the specific link address 2010/6/27 Andrew Brampton m...@bramp.net Yup donations are fine, you could even put adverts in. Andrew On 27 June 2010 14:16, Alex Xin xinxi...@gmail.com wrote:

[android-developers] Find action, category, mimeType, extras info of All installed Applications

2010-06-29 Thread busyboykangli
I want to get the list of all installed application and all their information (appName, package name,class name, action, categoty,mimetype and extras corresponding to the launch Activity of all installed applications) I am building a widget platform(not using Android native widget platform)

[android-developers] I couldn't find OTA implementation.

2010-06-29 Thread hornban
I have to implement OTA for GSM. I have seen OTA implementation on the Phone App. But it is just for CDMA. I need OTA for GSM. maybe there's OTA implementation for GSM in android full source. I think. does anybody know this? I am in panic now. let me out of here~ -- You received this message

[android-developers] Re: Can I put a donation link in my free app?

2010-06-29 Thread Chandana Napagoda
Hi, I think you need to go through these post's. They said you dev account might be banned. http://www.google.com/support/forum/p/Android+Market/thread?tid=588c37c3f334107dhl=en Chandana -- You received this message because you are subscribed to the Google Groups Android Developers group.

Re: [android-developers] Designing and Implementing Android App Idea

2010-06-29 Thread Chuck Tilbury
Outstanding! I have been lurking for a while and this is just what I need. Thanks. On 6/27/2010 4:12 PM, Maps.Huge.Info (Maps API Guru) wrote: You might want to review the other apps that have a similar theme, check out http://www.androlib.com or http://cyrket.com for a web based app search

[android-developers] How to get rid of the hello world output from a new project?

2010-06-29 Thread Vaelek
I'm probably going to feel like an idiot when I figure this out, but I'm hoping someone can help. I just installed the Android 2.1 SDK along with the latest Eclipse. When I create a new Android project, it outputs hello world when run. I can't for the life of me find anywhere in the project

[android-developers] Is there something wrong with the DatePicker and TimePicker?

2010-06-29 Thread A. S.
Hi, I'm trying to use an DatePickerDialog.OnCancelListener but I think something is wrong. It works if I push the back button to exit out of a date picker dialog, but if I push the software cancel button, it doesn't go off. Also if you set the dialog to not be allowed to be canceled, the back

Re: [android-developers] Can I put a donation link in my free app?

2010-06-29 Thread Chandana Napagoda
Hi, I think you need to go through these post's. They said you dev account might be banned. http://www.google.com/support/forum/p/Android+Market/thread?tid=588c37c3f334107dhl=en Chandana On 27 June 2010 18:46, Alex Xin xinxi...@gmail.com wrote: Hi, folks I want to login my app as free

[android-developers] Opening strings.xml file in eclipse gives java.lang.NullPointerException

2010-06-29 Thread boonx
Hi all, I am new to android and eclipse development and following the helloworld example to get a grisp. I installed the Eclipse plugin. Everything seems to work fine but I get a java.lang.NullPointerException error when I open the strings.xml file in eclipse. Also it does not seem to compile.

[android-developers] Re: Emulator 2.1 2.2 reverse geocoding not available

2010-06-29 Thread Malcolm
Richard, Joining this discussion late. I hit a similar problem when developing on a Mac using Eclipse and a level 8 (SDK 2.2 plus Google APIs) target. I was using code like this, based on an example in Reto Meier's book Professional Android 2 Application Development ---

[android-developers] Need help with ACTION_SEND Intent usage

2010-06-29 Thread Renee
Hello, I have searched for sample code related to this and tried what I found, but so far nothing is working. I am new to Android Development and the Eclipse environment, which is giving me some trouble since I don't know all of the correct terminology to search. I have an Intent Filter in my

[android-developers] xmpp code

2010-06-29 Thread Nikhil
can u send a copy of the code at my email id too. Presently, i have installed Android 2.2 in eclipse but i could not find a smack api in it. i could download smack jar file separately. can u help me in running xmpp in my present environment Thanx, Nikhil -- You received this message because you

[android-developers] Development Phone

2010-06-29 Thread jubin
Hi, Could anyone help me to explain which android device i should buy for developing and testing android application. Thanks, Jubin -- 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] Getting a GPS location once every 60 seconds?

2010-06-29 Thread Adrian Hayter
I've been developing a few Android applications over the past months, and have recently had to code an app that gets data about the phone's location and sends it off every minute or so. Obviously, I don't want the GPS to be constantly on, but I want to start it every 30 seconds, get the most

[android-developers] Android device for development

2010-06-29 Thread alex.manfner
Hallo! I basically want to aquire a new android phone mainly for development purpose. Is there a difference between the devices or can I develop apps on all of them? Are all supported by the IDE for debugging purpose? What device would you recomment? I'm thinking about the Galaxy S by Samsung...

[android-developers] How-to: Create a spreadsheet application

2010-06-29 Thread YoonSung Hong
Hello folks, I'm interested in creating a spreadsheet application for school research. And, I would like to hold on a column with one finger and move another figer to view around all columns while the column that is held stays at the same position on the screen. I'm beginner in Android platform

[android-developers] Re: Parental Control Android 2.1 for Samsung Moment

2010-06-29 Thread Radwan Shaykho
http://groups.google.com/group/android-developers http://groups.google.com/group/android-developers On Sun, Jun 27, 2010 at 10:16 PM, Rad radshay...@gmail.com wrote: Hello, I am new to this and a little loss, would any one help me finding a parental control with web filtering software for

[android-developers] remote testing on Android phone

2010-06-29 Thread u1663097 u1663097
Hello: We are looking for a platform to remote testing our application on real phone. We heard deviceanywhere providing such service. Does anybody know somewhere else which is cheaper? -- You received this message because you are subscribed to the Google Groups Android Developers group. To post

[android-developers] Does Android allow application to specify which wifi channel to use?

2010-06-29 Thread Li Dong
Hi all, I am working on a project to utilize multiple wifi channels. I need to set an android phone to transmit /listen for data on a specified wifi channel and may change the channel according to a schedule. I saw that anroid allows me to set using 13 or 14 channels, but i didn't find any API

[android-developers] android crashs restarts

2010-06-29 Thread Ln
Hello, I have a board to which froyo is ported. After the android bootup (that is after i see the home screen) android crashs and restarts again. This keeps happening. Could any one please let me what is wrong from the below log messages. D/AndroidRuntime( 1704): AndroidRuntime START

[android-developers] how to merge an array of bitmap together in one bitmap ?

2010-06-29 Thread nyarlathotep almighty
hi there, i'm trying to make a map loader for tiled, on android.. so far i could parse the tmx file, grab all the tile data, and put them in a 2dimensional array, like this: Bitmap tiles[x][y] ... it works and i can render tiled maps on android now, but only by interating through that tiles[][]

[android-developers] List View : text on left and right not working

2010-06-29 Thread elubin
In a ListView, I am trying to display some text on the left and a number on the right. I got it working with a RelativeView, but if the text on the left is too long, my number doesn't appear? http://www.elubin.com/images/Capture.jpg Here is my layout: LinearLayout

[android-developers] recover ur formated data

2010-06-29 Thread Bikram Rai
if your data formated or damage or deleted or corrupted, don't worry you can recover data.for detail ** * recoverdatac.blogspot.com* -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this

[android-developers] Screen flickering issue in Launcher App

2010-06-29 Thread mithun johny
I am facing an issue in Launcher app where when device in sleep mode and if i open the keyboard slider, there is an ugly screen flickering before it switches to the landscape mode. I tired fixing this issue by overriding onConfigurationChanged( ) method. Here is tried setting the landscape layout

[android-developers] Correct way of making a simple talking parrot app

2010-06-29 Thread Marko Štamcar
Is the following code (especially the listen() function) a proper way to do it? I'm not exactly happy with the sound quality I get from it... thanks for your help/comments in advance! Marko -- public class Main extends Activity { private volatile Thread listener; @Override

[android-developers] A question about sample sync adapter of developer.android.com

2010-06-29 Thread jeeyeah
Hi! This is a question about sample sync adapter of developer.android.com. (You can find it as searching by sample sync adapter on developer.android.com) I don't know what contacts.xml is for. (res/xml/contacts.xml) Though I removed that xml file from my application, the sync adapter worked and

[android-developers] Re: Parental Control Android 2.1 for Samsung Moment

2010-06-29 Thread Radwan Shaykho
http://developer.android.com/reference/packages.html On Sun, Jun 27, 2010 at 10:17 PM, Radwan Shaykho radshay...@gmail.comwrote: http://groups.google.com/group/android-developers http://groups.google.com/group/android-developers On Sun, Jun 27, 2010 at 10:16 PM, Rad radshay...@gmail.com

[android-developers] Parental Control Android 2.1 for Samsung Moment

2010-06-29 Thread Rad
Hello, I am new to this and a little loss, would any one help me finding a parental control with web filtering software for the Samsung Moment mobile phone? If I made a mistake emailing, please forgive me. Thank you in advance, Rad -- You received this message because you are subscribed to

[android-developers] Populating the groups table in contacts2.db

2010-06-29 Thread Resh
Hi Group, Can you please throw light on the groups table in contacts2.db. Who is populating it? Is it when the accounts are created ? I have explicitly add contents into groups table,but then when the phone is booted that table is empty and all contacts under the group is deleted. Please

Re: [android-developers] rtsp client?

2010-06-29 Thread u1663097 u1663097
The openCore platform in Android supports rtsp stack as a rtsp client. It is possible to support stream video. On Mon, Jun 28, 2010 at 6:33 PM, chas__123 charlie.nug...@gmail.com wrote: Hi could someone say if android supports an RTSP stack? We've an RTSP server that we'd like to stream

Re: [android-developers] Avoiding GPL

2010-06-29 Thread Chuck Tilbury
As I understand it (and I disclaim any responsibility for your actions, whatsoever) is that if your thing adds to a GPL'ed thing, then you have to GPL your work as well. However, if your thingy simply uses something that is GPL'ed, then your do not have to place your work under the GPL. The

Re: [android-developers] Re: how to play a 8192*8192 image ?

2010-06-29 Thread Daniel Baktiar
big screen could means display that spans multiple tv, so in that case that's not impossible. from the 8192x8192 image, it goes to a splitter device that distribute to the tv array. On 28 June 2010 08:44, Streets Of Boston flyingdutc...@gmail.com wrote: Then you need to tell them it is

[android-developers] App crashing after JDBC DB connection attempt

2010-06-29 Thread josh s
I wrote a function that is supposed to connect to a DB, then close the connection, for testing purposes, on Android. This is the function: [code] public void connectdb(String url, String user, String pass) throws ClassNotFoundException, SQLException {

  1   2   3   >