Re: [android-developers] Re: USB Extension Cables Breaks USB Driver/ADB Composite Device

2012-08-30 Thread Ralph Brickley
I think you nailed it. I bought a nice powered hub and had the same problem. The hub does get me closer but still had to use stock cable. I have a nice Scoshe USB 6' cable but obviously it's not nice enough On Aug 29, 2012 4:48 PM, Lew lewbl...@gmail.com wrote: Not all USB cables are equal.

[android-developers] JDBC Connectivity through Android

2012-08-30 Thread Arpit parikh
Guys, Is it possible to connect JDBC connectivity through android emulator?I have been tried a lot but could get success. I have been tried following code : package com.da; import java.sql.*; import android.app.Activity; import android.os.Bundle; import android.widget.TextView; public class

[android-developers] how to show the database(ListView) from another activity

2012-08-30 Thread MY Anggara
hi guys, i'm just a newbie in android world. i got a problem about to show my database as a ListView from another activity. 1. i have ActivityA that i use to insert a value. and in this activity i use to send data to ActivityB. 2. i have ActivityB as a ListView that show a database of input

[android-developers] Locking Android O.S. on Tablet

2012-08-30 Thread Ayse Karahasan
I have a question. We developed an android application for its working on Tablet. The user could not use any other application and services on the Tablet than this application. I need lock all Android O.S. spesifications plus bottom navigations etc. Any application or solution ? -- You

[android-developers] how to get public API's

2012-08-30 Thread Ana
Hi all, i want to develop one app using web services.but i am stuck on How to get api's of any entity. For simplicity i will briefly explain my idea .suppose i want to tell user that ,which is the nearest domino's pizza center for you using location.but problem is how to get domino's

[android-developers] ActionBar on 2.3 API

2012-08-30 Thread Copa
Hi, I'm developing an app to 2.3 API level, and I want to implement an ActionBar (with dropdown list) on it, like is present on patterns for Android 4.0. But this is just possible on API =4.0. It is possible create this ActionBar in an application with API 2.3 using some library for that or

[android-developers] Android NDK superuser permissions

2012-08-30 Thread Alvin Schurman
Can someone tell me how to run a native c program on the android as root? Giving the java wrapper superuser permissions seems to still result in a permission denied error in the c program. Thanks, A -- You received this message because you are subscribed to the Google Groups Android Developers

[android-developers] Database of Android Games/Apps

2012-08-30 Thread Corey Eadie
I was wondering if anyone knows of a way to download and maintain a database of Android games and apps. Does Google offer any sort of API's to access the information similar to what Apple offers with their App Store? If not, does anyone know of any services that would be able to provide a

[android-developers] Re: Google analytics crash

2012-08-30 Thread David Bradley
I hit the same exception. From reading about SQLite it appears to be creating separate database connections from two different threads can lead to this. I'm not sure if that's the case, but from the previous poster talking about posting the events at a later time I could see that might be.

[android-developers] Re: How to set the bitmap to Transparent

2012-08-30 Thread Nitin choudhary
Thanks, its help me a lot. Nitin Choudhary On Monday, April 2, 2012 9:24:47 PM UTC+5:30, Perry168 wrote: hi, I used following method to create a canvas. temp = Bitmap.createBitmap(thisWidth, thisHeight, Config.ARGB_); Canvas thisCanvas = new Canvas(temp); I don't know why the

[android-developers] Positive reviews being sold in spam email

2012-08-30 Thread Rich Woods
Hello Android developer community, I've just received an email from a company that I won't name here that is offering positive Play store reviews for sale. This service perverts the review system on the Play store and I'd like to report the business to Google. What would be the best way to

[android-developers] Uploading large size files to server using HttpUrlConnection in Android

2012-08-30 Thread Raj
Hi: If we use HttpUrlConnection for uploading large MB files (20 MB) with PUT method, getting out of memory error. We have used the method setFixedLengthOnStream() to over come from Out of Memory error. However the response from server is coming as 411 (CONTENT_LENGTH NOT FOUND), though we

[android-developers] android-sdk dose not running on win8

2012-08-30 Thread Wei Hao
I installed win8 yesterday, and of course I setup android sdk immediately. But it cannot run. After double-click it SDK.exe or AVD.exe, it activates a cmd window and disappear right away. That is all. it was not running.T_T . who knows how to solve this issue? -- You received this message

[android-developers] Insert an Image from the gallery on a button in Android

2012-08-30 Thread noobDevv
Im trying to do this: protected void onActivityResult(int requestCode, int resultCode, Intent data) { super.onActivityResult(requestCode, resultCode, data); if (requestCode == 1 resultCode == RESULT_OK null != data) { Uri selectedImage = data.getData(); String[]

[android-developers] How to support vietnamese language when upload android app

2012-08-30 Thread thegioisach
I'm vietnamese I'm using vietnamese in app. When i upload my app to google play, i don't see vietnamese in list of language. So how can i upload my app with vietnamese. Thanks -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this

[android-developers] Concurrent 3G and WiFi : Socket creation problem

2012-08-30 Thread glex
I am aware that concurrent usage of WiFi and 3G/4G is not supported on Android devices right now. I am working on a research project which tries to analyse the pros and cons for the same. I used the approach used by Android WiFi tether to reload the WiFi driver and configure the routing table

[android-developers] Re: merge images

2012-08-30 Thread Chandra Sekhar Nayak
I hope the below link will help you. http://androidattop.blogspot.com/ On Tuesday, 15 September 2009 12:11:35 UTC+5:30, chan wrote: can you give some sample codes for merge several images into a one single image.. Thank you advance -- You received this message because you are subscribed

[android-developers] Android 4.1.1 errors

2012-08-30 Thread Mihai
Hi, i have google nexus s and one month ago the system update available pops up to upgrade my icecraem sandwich to jelly bean. First i was so enthusiastic because whats new its better BUT it wasnt. Since then my phone is so slow and it barely respond to some commands for the first time...even

[android-developers] Adding virtual device on Emulator.

2012-08-30 Thread Mun won Choi
Hi All. I want to add virtual device on emulator. so I have built SDK on platform source. And I am searching about goldfish in googling But I don't know how to approach it. Please help me anyone, anything. Thanks, MW -- You received this message because you are subscribed to the Google

[android-developers] Problem with Galaxy Mini 2 ADB

2012-08-30 Thread Girafe
Hi Everybody! I have a little (or big?) problem. I would like to develop application on Samsung Galaxy Mini 2. But the ADB driver isn't work. My Op system is Windows Xp. Eclipse and Emulator and anything else are running fine, so The only problem with ADB driver. Which ADB driver can be

Re: [android-developers] Get activity class instance

2012-08-30 Thread Stephen Shaw
On Wed, Aug 29, 2012 at 9:47 AM, TreKing treking...@gmail.com wrote: On Wed, Aug 29, 2012 at 3:00 AM, Filipe filipe.ma...@gmail.com wrote: I would really prefer to access the MyActivityB class public variables. If you explain why you want to do things this way, someone can probably suggest

[android-developers] Re: how to get event by broadcast receiver when application installed first time?

2012-08-30 Thread assaf passal
On Thursday, June 16, 2011 9:04:39 AM UTC+3, Hitendrasinh Gohil wrote: Hi, I m just trying to get event through broadcast receiver when application installed firsttime. Here is my broadcastreceiver class. public class LaunchReceiver extends BroadcastReceiver { public

Re: [android-developers] ActionBar on 2.3 API

2012-08-30 Thread Raghav Sood
Use ActionBarSherlock. Raghav Sood Sent from my Nexus 7 On Aug 30, 2012 12:02 PM, Copa david.fortun...@present-technologies.com wrote: Hi, I'm developing an app to 2.3 API level, and I want to implement an ActionBar (with dropdown list) on it, like is present on patterns for Android 4.0.

Re: [android-developers] Not able to download Google play services in extras folder

2012-08-30 Thread Nikolay Elenkov
On Thu, Aug 30, 2012 at 2:53 PM, ANKUR GOEL ankur1...@gmail.com wrote: Hi all , i just updated the extras folder with Google play services ..but it says not able to download folder . Can anybody help is something wrong with server . The download URL return 404, so apparently it's not there

[android-developers] Re: how to get public API's

2012-08-30 Thread Ali Chousein
Have you checked Google Places API? https://developers.google.com/places/documentation/ - Ali Chousein https://play.google.com/store/apps/details?id=com.apps.besocial https://play.google.com/store/apps/details?id=com.apps.weather_buddy -- You

[android-developers] Bleutooth chat Api 10 not working

2012-08-30 Thread Haris
Hai all I am trying with blue-tooth chat example for api-10, in my micromax pfhone.. When I scanning for devices it showing the list for both secure and non secure. But When I try to connect it showing unable to connect... And UUID s are private static final UUID MY_UUID_SECURE =

[android-developers] how to show the database(ListView) from another activity

2012-08-30 Thread Jason Sesso
Did you bundle the data from A to send it to B? -- 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

Re: [android-developers] ActionBar on 2.3 API

2012-08-30 Thread ravi saini
hii please send the complete code of action bar to me also -- 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: ACRA

2012-08-30 Thread Kevin Gaudin
Yes, it does. This is an open source library, so you can have a look at the source code. There is even a search engine: https://code.google.com/p/acra/source/search?q=setDefaultUncaughtExceptionHandlerorigq=setDefaultUncaughtExceptionHandlerbtnG=Search+Trunk If you need help regarding ACRA,

Re: [android-developers] how to get value from database in android

2012-08-30 Thread Calin Perebiceanu
Here you go : http://developer.android.com/guide/topics/data/data-storage.html#db On Thursday, 30 August 2012 07:50:23 UTC+3, Sadhna Upadhyay wrote: how to make connectoin with data On Thu, Aug 30, 2012 at 9:32 AM, ravi saini ravisa...@gmail.comjavascript: wrote: first make the

[android-developers] 【android-developers】AndroidManifest.xml receiver android:icon

2012-08-30 Thread 安藤玲生
hello. im japanese programmer. There was the question and it mailed. Manifest file In the inside of the receivertag android:icon Although I think it possible to set up, is a setup possible when making what kind of application? the widget using [ as long as various sites were seen ]

[android-developers] Custom ActionBar Popup (like QuickContactBadge)

2012-08-30 Thread Gianluca Cacace
Is there any library or Android Widget to have this behaviour when I click on an ImageView? See image attached: https://lh3.googleusercontent.com/-CRmHY6sx-FE/UD8079LIWTI/CIs/m7MKPdoS1yM/s1600/device-2012-08-30-113019.png -- You received this message because you are subscribed to the

[android-developers] Specifying the language of the application

2012-08-30 Thread Simon Giddings
I need to create individual language versions of my application - due to resource size. How can I specify the language of the application ? I could not see how to do this within the manifest. Is it only possible when creating the product in Google Play ? -- You received this message because

Re: [android-developers] Re: tileMode = repeat with stretching the image in order to get an exact number of repetitions.

2012-08-30 Thread Pau Rodríguez Coloma
Thanks MagouyaWare for your help, but there are a problem with this solution. First, there are a known issue with dashed lines in ICS (http://code.google.com/p/android/issues/detail?id=29944) that makes it always drawn as a solid line. On the other hand, if I use this shape, at the end I've

[android-developers] How to generate random numbers between 1 to 8?

2012-08-30 Thread thejaswi s
In my application I want to generate random number between 1 to 8 and there should not be 5,6 and 7. i.e. random numbers must be (1, 2, 3, 4, 8). Thanks. -- 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] Loading Gallery widget with 1000 images

2012-08-30 Thread Ragunath CR
No We need to request each image one by one.. Regards Ragunath On Wednesday, 29 August 2012 23:59:05 UTC+5:30, MagouyaWare wrote: So I am planning to download only first 50 images from the server and display in the gallery. Once it is done, the next 50 images has to be downloaded and

Re: [android-developers] Custom ActionBar Popup (like QuickContactBadge)

2012-08-30 Thread Kostya Vasilyev
That looks like possibly a ListPopupWindow (3.0 and higher) with a custom background derived from the framework's popup menu background. http://developer.android.com/reference/android/widget/ListPopupWindow.html The item may be TextViews with a compound drawable on the left. -- K 2012/8/30

Re: [android-developers] Re: tileMode = repeat with stretching the image in order to get an exact number of repetitions.

2012-08-30 Thread Kostya Vasilyev
If you wanted to pursue view resizing, I'd subclass some type of view and override onMeasure(), which would take the image size into account. An alternative is to create your own Drawable subclass that has the behavior you desire: repeating a bitmap as many times as would fit, stretching or

[android-developers] 【android-developers】Part2 AndroidManifest.xml receiver android:icon

2012-08-30 Thread 安藤玲生
Hello. I am a Japanese programmer. It worries about being written to url of the following, and the same thing. http://stackoverflow.com/questions/6747986/icon-for-running-service help me. Thanks. -- You received this message because you are subscribed to the Google Groups Android Developers

[android-developers] How to show Google map preview in application?

2012-08-30 Thread AJ
Hi All I want to show Google map preview in my application. The idea is like that as following Address 1 - Google map preview 1 Address 2 - Google map preview 2 : : : Address n -- Google map preview n Any help or suggestion are welcome. Thanks Ajeet Singh -- You

Re: [android-developers] Re: AsyncTask - onPostExecute is not called

2012-08-30 Thread Ana Rita Brito Oliveira
Something that I repared.. my onPostExecute returns when I finish my app.. it is normal??? 2012/8/30 Ana Rita Brito Oliveira oliveiranar...@gmail.com: Yes.. I made it.. I made one demoProject with this AsyncTask and it worked.. :S And I copied the code into my project 2012/8/30 Kostya

[android-developers]

2012-08-30 Thread Sadhna Upadhyay
Hi everybody, how to apply condition that edit text either can take numeric or alphanumeric or only string -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers@googlegroups.com To

Re: [android-developers] How to generate random numbers between 1 to 8?

2012-08-30 Thread Parthi K
in java support random method call random object . On Thu, Aug 30, 2012 at 3:43 PM, thejaswi s thejasw...@gmail.com wrote: In my application I want to generate random number between 1 to 8 and there should not be 5,6 and 7. i.e. random numbers must be (1, 2, 3, 4, 8). Thanks. -- You

Re: [android-developers]

2012-08-30 Thread Parthi K
use android:type numeric On Thu, Aug 30, 2012 at 4:59 PM, Sadhna Upadhyay sadhna.braah...@gmail.comwrote: Hi everybody, how to apply condition that edit text either can take numeric or alphanumeric or only string -- You received this message because you are subscribed to the Google

Re: [android-developers] How to generate random numbers between 1 to 8?

2012-08-30 Thread thejaswi s
ya, thanks. I got. On Thu, Aug 30, 2012 at 5:05 PM, Parthi K parthisof...@gmail.com wrote: in java support random method call random object . On Thu, Aug 30, 2012 at 3:43 PM, thejaswi s thejasw...@gmail.com wrote: In my application I want to generate random number between 1 to 8 and

Re: [android-developers] How to show Google map preview in application?

2012-08-30 Thread Parthi K
hi dude r u using any button activity just call button activity inside map activity method once user clicked the button it will show the exact location address... On Thu, Aug 30, 2012 at 4:44 PM, AJ ajeet.invinci...@gmail.com wrote: Hi All I want to show Google map preview in my

[android-developers] Best practice in handling huge overlay items on Android Maps

2012-08-30 Thread Ichsan
Dear All, I have a situation where I need to tell users where the nearby ATMs are located. The problem is if the bank has 1 ATMs. When I use Maps for web programmings, I usually only load ATMs on visible area. When user do panning or zooming out, I request back-end server to provide more

Re: [android-developers] JDBC Connectivity through Android

2012-08-30 Thread Parthi K
Hi arpita , I think you r working web services huh good if you r using web services already application running in database right now your android application will interact with database mean using JDBC connection , android not support oracle or sql database so u want use middle ware

Re: [android-developers] Best practice in handling huge overlay items on Android Maps

2012-08-30 Thread Parthi K
Hi dude y wasting time that s bankers work just give Google api it will find near ATM r particullar atm wil find On Thu, Aug 30, 2012 at 5:16 PM, Ichsan ich...@gmail.com wrote: Dear All, I have a situation where I need to tell users where the nearby ATMs are located. The problem is if the

Re: [android-developers] Hi all

2012-08-30 Thread Parthi K
hi dude i got output thanks to reply On Tue, Aug 28, 2012 at 1:13 AM, bob b...@coolfone.comze.com wrote: We don't use JSON for UI. We use XML. On Monday, August 27, 2012 7:54:27 AM UTC-5, parthi wrote: Is it possible to design in json UI ..Mr Mark Murphy On Mon, Aug 27, 2012 at 6:21

Re: [android-developers] How to show Google map preview in application?

2012-08-30 Thread AJ
Thanks for reply. Let me explain again. Looks it is not understandable. Address1, 2, are the text address and the Google preview 1 is the preview shown for the particular address when my activity launched. Thanks Ajeet On Thursday, 30 August 2012 17:11:34 UTC+5:30, parthi wrote: hi dude r

Re: [android-developers] Android devices and use of MM/INCH

2012-08-30 Thread Thesalan
You're right... This is the config of DisplayMetrics of One X: xdpi = 240 widthPixels = 480 We can deduce that the screen have a width of 2 inches... but in real - 2,25 inches So, is there a solution to determine this automatically? Or is it impossible to have real mesure on all devices?

Re: [android-developers] Positive reviews being sold in spam email

2012-08-30 Thread Fred Niggle
Save your time and energy: ignore them. On 29 August 2012 14:46, Rich Woods richwo...@gmail.com wrote: Hello Android developer community, I've just received an email from a company that I won't name here that is offering positive Play store reviews for sale. This service perverts the

[android-developers] Android Fu: TwitterCreeper (Requirements Doc Released)

2012-08-30 Thread Bill Mote
Just because you missed last night's coding challenge doesn't mean you still can't have fun with it! The full requirements presentation can be found here: https://docs.google.com/presentation/d/15z-_tq3tRnXLlIqcZR6DXQvIkWcWONH6hBuKjcwnQl4/edit#slide=id.p The next coding challenge is scheduled

[android-developers] Android devices and use of MM/INCH

2012-08-30 Thread Latimerius
On Thu, Aug 30, 2012 at 2:37 PM, Thesalan thesa...@gmail.com wrote: You're right... This is the config of DisplayMetrics of One X: xdpi = 240 widthPixels = 480 We can deduce that the screen have a width of 2 inches... but in real - 2,25 inches That's your explanation then - if the

[android-developers] Re: camera

2012-08-30 Thread aek
Hi guys, Thank you for your reply, I tried this, unfortunately It doesnt solve the prob. The prob. I guess is in the function String url = Images.Media.insertImage(getContentResolver(), bm, null, null); which returns a null value for url ?! why I dont know ? I checked the values of

Re: [android-developers] How to generate random numbers between 1 to 8?

2012-08-30 Thread Justin Anderson
Note that this is not an Android specific question... Please only ask questions that relate directly to Android SDK development. Thanks, Justin Anderson MagouyaWare Developer http://sites.google.com/site/magouyaware On Thu, Aug 30, 2012 at 5:37 AM, thejaswi s thejasw...@gmail.com wrote: ya,

Re: [android-developers] Loading Gallery widget with 1000 images

2012-08-30 Thread Justin Anderson
No We need to request each image one by one.. Then why are you not able to do it? What have you tried so far? Thanks, Justin Anderson MagouyaWare Developer http://sites.google.com/site/magouyaware On Thu, Aug 30, 2012 at 4:26 AM, Ragunath CR ragunath...@gmail.com wrote: No We

Re: [android-developers] 【android-developers】AndroidManifest.xml receiver android:icon

2012-08-30 Thread Justin Anderson
Umm... this question is not very clear. Thanks, Justin Anderson MagouyaWare Developer http://sites.google.com/site/magouyaware On Thu, Aug 30, 2012 at 3:26 AM, 安藤玲生 ando.reo...@gmail.com wrote: hello. im japanese programmer. There was the question and it mailed. Manifest file In the

[android-developers] Bluetooth connection problem

2012-08-30 Thread Bryan
I've been trying to resolve a bluetooth connection problem between my app and service running on my laptop. I've paired my phone, a Nexus S 4G running AOSP 4.1.1, with my laptop through the System Settings. In my app, I'm unable to connect to my service over this pairing. However, if I go back

Re: [android-developers] need to allow user to draw a region on Google map

2012-08-30 Thread dica
Thanks Mark. Do you happen to know of any tutorials where I can see this in action? On Tuesday, August 28, 2012 12:51:48 PM UTC-4, Mark Murphy (a Commons Guy) wrote: On Tue, Aug 28, 2012 at 12:37 PM, dica steven...@gmail.com javascript: wrote: I'd like to allow a user to draw a region

Re: [android-developers] Bluetooth connection problem

2012-08-30 Thread rauf qureshi
//demo3.idhasoft.us/iloyal/api/iloyal/customer.php/customer.login //I have develop following code can any body tell me solution of following errors import org.ksoap2.SoapEnvelope; import org.ksoap2.serialization.SoapObject; import org.ksoap2.serialization.SoapSerializationEnvelope; import

Re: [android-developers] Android NDK superuser permissions

2012-08-30 Thread Justin Anderson
NDK questions belong on the NDK Developers Group... Thanks, Justin Anderson MagouyaWare Developer http://sites.google.com/site/magouyaware On Wed, Aug 29, 2012 at 8:02 PM, Alvin Schurman alvin.schur...@gmail.comwrote: Can someone tell me how to run a native c program on the android as root?

Re: [android-developers] Locking Android O.S. on Tablet

2012-08-30 Thread Justin Anderson
Write your own custom firmware... Thanks, Justin Anderson MagouyaWare Developer http://sites.google.com/site/magouyaware On Wed, Aug 29, 2012 at 11:41 AM, Ayse Karahasan a...@moventis.com.trwrote: I have a question. We developed an android application for its working on Tablet. The user

Re: [android-developers] How to hide android application icon

2012-08-30 Thread Justin Anderson
then try to solve his query instead creating nonsenses here!! First, I am not creating nonsense here... Your answer had nothing to do with his question. He wants to do dynamically show and hide his icon somehow... Second, I asked him to clarify his question because it didn't really make all

Re: [android-developers] Bluetooth connection problem

2012-08-30 Thread Bryan
rauf, I think you replied to the wrong topic, could you please delete your post? Thank you, Bryan On Thursday, August 30, 2012 10:15:58 AM UTC-4, rauf qureshi wrote: //demo3.idhasoft.us/iloyal/api/iloyal/customer.php/customer.login //I have develop following code can any body tell me

Re: [android-developers] How to show scrollbar for a customizing view which is not drawn whole content

2012-08-30 Thread Justin Anderson
Now, I need show a scrollbar for this view. As I know, any view can support scrollbar. However, you must draw whole content of the view in onDraw() and use scrollTo() to scroll the view. Any idea? Sure... draw the whole content of the view in onDraw() and use scrollTo() to scroll the view.

[android-developers] Re: Bluetooth connection problem

2012-08-30 Thread Bryan
In case it's helpful, here's the relevant code: https://github.com/piusvelte/RemoteAuthClient/blob/master/src/com/piusvelte/remoteauthclient/RemoteAuthClientService.java public ConnectThread(String address, String state) { mAddress = address;

Re: [android-developers] Re: Merging Bundles

2012-08-30 Thread Justin Anderson
Looked at the source, it overwrites That would be another way of finding the answer... In either case you could have discovered the answer for yourself faster than posting on here and waiting for an answer. Just saying... :-) Thanks, Justin Anderson MagouyaWare Developer

[android-developers] Re: How to generate random numbers between 1 to 8?

2012-08-30 Thread bob
Random r = new Random(); int randnum = r.nextInt(5)+1; if (randnum==5) randnum=8; On Thursday, August 30, 2012 5:16:02 AM UTC-5, thejaswi s wrote: In my application I want to generate random number between 1 to 8 and there should not be 5,6 and 7. i.e. random

Re: [android-developers] Getting the google voice synthesizer

2012-08-30 Thread nikulau
well, the google system that you use in the voice.search I think it's pretty important to know it thanks for your answer -- 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] Getting the google voice synthesizer

2012-08-30 Thread nikulau
I need it to send a binary signal by a usb wire plugged to the mobile, I think that this work isn't really difficult, but I need the app to edit it a little, just read the order and pass to binary code. I thank your time -- You received this message because you are subscribed to the Google

Re: [android-developers] Re: AsyncTask - onPostExecute is not called

2012-08-30 Thread Andrea Pietroni
if you're not going to support versions before Gingerbread, try switching to HttpURLConnection, see this: http://android-developers.blogspot.it/2011/09/androids-http-clients.html I'm not experienced with networking, but does HttpClient need to be closed some way? could that be the problem? --

[android-developers] Re: Bleutooth chat Api 10 not working

2012-08-30 Thread bob
Are you attempting to connect to another device running the Bluetooth Chat example? If so, what type of device is it? On Thursday, August 30, 2012 2:37:20 AM UTC-5, Haris wrote: Hai all I am trying with blue-tooth chat example for api-10, in my micromax pfhone.. When I scanning for

[android-developers] Re: Locking Android O.S. on Tablet

2012-08-30 Thread bob
Maybe house the tablet in a frame that blocks access to the buttons? On Wednesday, August 29, 2012 12:41:19 PM UTC-5, Ayse Karahasan wrote: I have a question. We developed an android application for its working on Tablet. The user could not use any other application and services on the

Re: [android-developers] Re: AsyncTask - onPostExecute is not called

2012-08-30 Thread Andrea Pietroni
also, try AndroidHttpClient.newInstance() instead of a plain DefaultHttpClient (this try could be easier to do before HttpURLConection). -- 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: AsyncTask - onPostExecute is not called

2012-08-30 Thread Ana Rita Brito Oliveira
I will see de documentation that you give me.. and no.. we the HttpClient dosen't have any colse method. :S 2012/8/30 Andrea Pietroni andrea.pietr...@gmail.com: if you're not going to support versions before Gingerbread, try switching to HttpURLConnection, see this:

Re: [android-developers] Re: AsyncTask - onPostExecute is not called

2012-08-30 Thread Ana Rita Brito Oliveira
the URL Connection has the same problem.. I will try this,, 2012/8/30 Andrea Pietroni andrea.pietr...@gmail.com: also, try AndroidHttpClient.newInstance() instead of a plain DefaultHttpClient (this try could be easier to do before HttpURLConection). -- You received this message because you

[android-developers] apk should reviewed prior get available to PLAY

2012-08-30 Thread lselwd
After a buyer buy an App from PLAY, how much time has to try it and refunded if do not want it uninstall it? May have differ google account for Play a/c and Merchant a/c linked together? Name/email required be the same? May install official signed (ready submit to PLAY) APK App file, to my

Re: [android-developers] Hi all

2012-08-30 Thread Michael Leung
maybe reading this : http://www.vogella.com/articles/AndroidJSON/article.html Moreover, I changed to JSON for UI sometime, I am more prefer to use JSON. I found JSON is saving a lot of size in data transfer. On Thu, Aug 30, 2012 at 10:08 PM, Parthi K parthisof...@gmail.com wrote: hi dude i got

Re: [android-developers] apk should reviewed prior get available to PLAY

2012-08-30 Thread Kristopher Micinski
I hate to tell you this, but your english is poor enough to be incomprehensible. Google play cannot test your app on every device automatically, because of a number of reasons, instead you should test on your own before deployement. And yes, users can get a refund after a certain amount of time

[android-developers] android 4.0.4 url connection

2012-08-30 Thread SUDAM swain
Hi All, I have to http url connection from android 4.0.4 android os. Before I was connect to http url by a different thread in 3.0 samsung galaxy. It was working fine. But after update Os to 4.0.4 this connection is not working. So I used AsyncTask for url connection .Still not

Re: [android-developers] android 4.0.4 url connection

2012-08-30 Thread Justin Anderson
Still not working. connection is happening but I can not bring data, at the time of bring data or cheching responce code giving Nullpointer exception. Can any body help me for this solution. Probably not without the relevant code... Thanks, Justin Anderson MagouyaWare Developer

[android-developers] button change onClick

2012-08-30 Thread oriolmesia
Hi guys, I have an issue with the final tweak of my new app. Now that I'm nearly to finish I'm looking to improve my interface. What I want it's just to see how my buttons change when someone pressed on them, only for the amount of time that the button remain pressed. The buttons on my app are

Re: [android-developers] button change onClick

2012-08-30 Thread Justin Anderson
Use a statelist drawable, also known as a selector: http://developer.android.com/guide/topics/resources/drawable-resource.html#StateList Thanks, Justin Anderson MagouyaWare Developer http://sites.google.com/site/magouyaware On Thu, Aug 30, 2012 at 11:47 AM, oriolmesia mesia@gmail.com wrote:

Re: [android-developers] button change onClick

2012-08-30 Thread Liem.T Vo
Please refer at url http://developer.android.com/guide/topics/ui/controls/button.html: I copied from that location for you: Custom background If you want to truly redefine the appearance of your button, you can specify a custom background. Instead of supplying a simple bitmap or color,

Re: [android-developers] Specifying the language of the application

2012-08-30 Thread TreKing
On Thu, Aug 30, 2012 at 4:45 AM, Simon Giddings mr.s.giddi...@gmail.comwrote: I need to create individual language versions of my application - due to resource size. How much text do you have that translations provide a resource size concern? How can I specify the language of the application

Re: [android-developers] How to support vietnamese language when upload android app

2012-08-30 Thread TreKing
On Wed, Aug 29, 2012 at 12:50 PM, thegioisach kienchochethah...@gmail.comwrote: So how can i upload my app with vietnamese. Use Viatnamese for the text throughout the app. Then upload the app to Google Play. That's it. The language selection in the Developer Console is for localizing the

Re: [android-developers] Database of Android Games/Apps

2012-08-30 Thread TreKing
On Wed, Aug 29, 2012 at 6:57 PM, Corey Eadie coreyea...@gmail.com wrote: Does Google offer any sort of API's to access the information similar to what Apple offers with their App Store? No. If not, does anyone know of any services that would be able to provide a list like that? No idea

[android-developers] How do I append an Xml File?

2012-08-30 Thread Guilherme Bernardi
Hi. I'm trying to append an Xml Data File. The structure of Xml is: ?xml version='1.0' encoding='UTF-8' standalone='yes' ? clientes cliente4 Empresa1/Empresa Codigo5/Codigo Nomegsdf/Nome Enderecoags/Endereco Bairrogasd/Bairro /cliente4 /clientes I need to add

Re: [android-developers] How do I append an Xml File?

2012-08-30 Thread Jacky Alciné
Why not use a DOM parser? On Thu, Aug 30, 2012 at 3:42 PM, Guilherme Bernardi gui.bernard...@gmail.com wrote: Hi. I'm trying to append an Xml Data File. The structure of Xml is: ?xml version='1.0' encoding='UTF-8' standalone='yes' ? clientes cliente4 Empresa1/Empresa

Re: [android-developers] How do I append an Xml File?

2012-08-30 Thread Guilherme Bernardi
Well... I can use DOM parser, but by DOM parser I can get the nodes? remove nodes? and append the records? Em quinta-feira, 30 de agosto de 2012 17h03min10s UTC-3, Jacky Alciné escreveu: Why not use a DOM parser? On Thu, Aug 30, 2012 at 3:42 PM, Guilherme Bernardi

Re: [android-developers] How do I append an Xml File?

2012-08-30 Thread TreKing
On Thu, Aug 30, 2012 at 3:24 PM, Guilherme Bernardi gui.bernard...@gmail.com wrote: I can use DOM parser, but by DOM parser I can get the nodes? remove nodes? and append the records? Yes, yes, and yes, in that order.

Re: [android-developers] How do I append an Xml File?

2012-08-30 Thread Larry Meadors
You can even spew it all out as text when you're done. On Thu, Aug 30, 2012 at 2:29 PM, TreKing treking...@gmail.com wrote: On Thu, Aug 30, 2012 at 3:24 PM, Guilherme Bernardi gui.bernard...@gmail.com wrote: I can use DOM parser, but by DOM parser I can get the nodes? remove nodes? and

[android-developers] Re: How do I append an Xml File?

2012-08-30 Thread Guilherme Bernardi
Ok, I'll start... and post the results. Thank you. Em quinta-feira, 30 de agosto de 2012 16h42min36s UTC-3, Guilherme Bernardi escreveu: Hi. I'm trying to append an Xml Data File. The structure of Xml is: ?xml version='1.0' encoding='UTF-8' standalone='yes' ? clientes cliente4

[android-developers] Issues with SpeechRecognizer on Jelly Bean

2012-08-30 Thread joebowbeer
There seems to be a major issue affecting programmatic users of the speech recognition service on Jelly Bean handsets: http://code.google.com/p/android/issues/detail?id=36679 In particular, users of the RecognitionListener are not receiving results. If anyone is interested, please star this

[android-developers] Messenger from Remote Service Causing Memory Leak

2012-08-30 Thread Dave Smith
I have an application that communicates with a Service in a remote process using the Messengerinterface. Here is the basic architecture of how things are set up: - The application generates several Operation objects that require access to the service. - Each Operation contains a

Re: [android-developers] Messenger from Remote Service Causing Memory Leak

2012-08-30 Thread Mark Murphy
On Thu, Aug 30, 2012 at 5:42 PM, Dave Smith dasmith1...@gmail.com wrote: Does anyone know if there is a way to clear or disable the Messenger when the Operation is over so it doesn't create this memory leak? Whatever you do, don't shoot it. :-) More seriously, I haven't a clue -- I haven't

[android-developers] Using SyncAdapter without creating an account

2012-08-30 Thread Flávio Faria
My app allows people to use and manage their data regardless they're logged in. Though, as I uniquely identify each device, I want to sync data from my anonymous users (not logged ones) as well. So, I was wondering if it is a good practice to create an anonymous account in this case, since

Re: [android-developers] Messenger from Remote Service Causing Memory Leak

2012-08-30 Thread Dianne Hackborn
It is true that sending a messenger across processes will require holding a GREF on it for the other process to communicate with it. Barring bugs (which have happened but I am not sure if in any released platform versions), the GREF will be released when the other process itself no longer holds a

  1   2   >