Re: [android-developers] App Update with certificate expiring before October 22, 2033

2012-08-23 Thread TreKing
On Thu, Aug 23, 2012 at 12:56 AM, Agnes Ecube ecube.develo...@gmail.comwrote: We simply did not get any response or answer! Is this the normal behavior of Google Play Developer Support in case of severe problems? Yup, basically. Unfortunately that is your best bet, as I doubt anyone here

[android-developers] Securize applications

2012-08-23 Thread Chony
Hi, I need to know how to block access to a list of applications from another application to manage it, is that possible? -- 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] Emulator Use Question

2012-08-23 Thread J.B.
Hi all, My client wants me to use the Intel HAXM emulator. Does anybody use it? How does it compare to the one in the Android SDK? Thx, JB -- 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] programmatic bluetooth pairing

2012-08-23 Thread R S
I have a known good MAC address for a bluetooth device and I wish to initiate pairing programmatically. This would allow the user to pair without going to the bluetooth settings screen and manually pairing. I want to avoid having to rely on reflection as in the following example, but I want the

[android-developers] Android C2DM(PHONE_REGISTRATION_ERROR) Error on ICS(4.0)

2012-08-23 Thread Bici
hi. it happend on LG Prada 3.0(LG-SU540). it's successful that registration of C2DM on GB(2.3). but PHONE_REGISTRATION_ERROR occurred after I had upgraded to ICS. I tested many same model. whole LG-SU540 devices didn't occurred. but better-most device did. I tried Playstore update, re-sign

[android-developers] Roll back to ICS?

2012-08-23 Thread JoeI
I have a WiFi only Motorola XOOM that was recently OTA updated to Jelly Bean. Since that update, I am no longer able to connect to my company's corporate wireless network due to issues with Jelly Bean that causes devices to not connect to wi-fi networks with particular security

[android-developers] Location data not consistently available and sometimes gives null data

2012-08-23 Thread Fasih Awan
I am trying to get the location of a user through LocationManager.NETWORK_PROVIDER but it always returns a blank string. Only sometimes I get the valid data. Is there any way to make this method re-iterate until it gives me a location? I would think that location would come quickly and there

[android-developers] Handler object is taking long time to send message to UIThread

2012-08-23 Thread Argon
Its the handler in the recording thread. It should change the button text before thread starts audio recording but it doesnt run till long after BOTH threads are done. can someone please tell me whats going on? package com.EJH.Industries.microkr; import android.media.AudioFormat; import

[android-developers] Help with application

2012-08-23 Thread laila hafsiani
hello, my name is laila hafsiani putri. i'm from indonesian and i'm new in android developer. i'm going to make application introduction to the Arabic alphabet. what first i do? may i have template application or project source in eclipse. sorry for my bad english :D thanks anyway. -- You

[android-developers]

2012-08-23 Thread Manash Das
I am an engineering last year student. I am developing a newspaper application for android. But i dont have idea how to start the project..help me -- 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] A necessary question about GPS and Multitasking.. Please help me!

2012-08-23 Thread EricAllen
I have an idea for an applicationhttp://www.iphonedevsdk.com/forum/iphone-sdk-development/107136-a-necessary-question-about-gps-and-multitasking-please-help-me.html# but the creation of the app rides on the flexibility of smartphone software. Here is my question, I hope somebody has some

Re: [android-developers]

2012-08-23 Thread Asheesh Arya
what functionality you are trying to include in your newspaper application!!! -- 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

Re: [android-developers]

2012-08-23 Thread chandur mani
Hi manash, 1st you go with Google play , which is containing lot of newspaper app , once go through this videos and you will get some idea how to use it. Once you will get the visual things , then automatically you will work on it with your stuff. try it.

Re: [android-developers] How to get every time new/refreshed Current Location

2012-08-23 Thread Rajan Thakrar
can you please provide some code snippet, so i can understand. B'cos without using Location location = locationManager.getLastKnownLocation(LocationManager.GPS_PROVIDER); this line of code how can i get the latitude and longitude ? (Note : I don't want to use getLastKnownLocation() method)

[android-developers] android-support-v13.jar not present in my application

2012-08-23 Thread Vijay Krishnan
Hi all, I am using eclipse for developing android application.When i create my application,android-support-v13.jar is not bundled in my application.Help on this. Thanks, vijay.k -- You received this message because you are subscribed to the Google Groups Android Developers group. To post

[android-developers] connecting database...

2012-08-23 Thread laxman k
hi friends.. i want connect the my application to external l myql database.. it is possible are notif possible how it work plz explain me thanks -- You received this message because you are subscribed

[android-developers] Re: Help with application

2012-08-23 Thread Juned Khan
Hi Laila, First you should be more specific to your application like which functionality you want to provide. If possible examine some sample application and start your development. And yes,if you are confuse at any situation through development then think as end user, it will be more

Re: [android-developers] Android C2DM(PHONE_REGISTRATION_ERROR) Error on ICS(4.0)

2012-08-23 Thread Ajmer Singh
C2DM is replaced by GCM, On Wed, Aug 22, 2012 at 1:03 PM, Bici bici0...@gmail.com wrote: hi. it happend on LG Prada 3.0(LG-SU540). it's successful that registration of C2DM on GB(2.3). but PHONE_REGISTRATION_ERROR occurred after I had upgraded to ICS. I tested many same model. whole

Re: [android-developers] Re: Reliable way to detect application launch from home / desktop?

2012-08-23 Thread user123
Google Analytics! I want to track when the user opens the app (taps on the icon in apps or home screen in order to launch it). On Wednesday, August 22, 2012 6:09:09 PM UTC+2, MagouyaWare wrote: Why are you wanting to detect this? Perhaps there is a better way to accomplish what you are

[android-developers] Re: NDK in MacOS

2012-08-23 Thread Juned Khan
Hi Ricardo, Can you show the code of local.mk file? Thanks Juned Khan -- 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: android.os.NetworkOnMainThreadException error

2012-08-23 Thread Juned Khan
Hi Vivek, If you are working on the Honeycomb or higher vesrsion of android then you can not do any long running or networking task in main thread. you have to handle this tasks using AsyncTaskhttp://developer.android.com/reference/android/os/AsyncTask.htmlclass. please read the documents it

Re: [android-developers] App Update with certificate expiring before October 22, 2033

2012-08-23 Thread Zsolt Vasvari
Try to find a Developer Advocate on Google+ and post to them directly. That's your best bet. Waiting for an answer via the official support channel is exercise in futility and will just drive you nuts. On Thursday, August 23, 2012 1:56:46 PM UTC+8, Agnes Ecube wrote: Hi TreKing, we

[android-developers] Re: Help with application

2012-08-23 Thread Jason Sesso
You should probably look on developer.android.com and do the hello world app. There you can understand views and activities. On Wednesday, August 22, 2012 9:33:42 PM UTC-7, laila hafsiani wrote: hello, my name is laila hafsiani putri. i'm from indonesian and i'm new in android developer.

[android-developers] Re: Writing multiple records to NFC tag

2012-08-23 Thread paulkayuk
Yes yes, if you take a look at the documentation here: http://developer.android.com/reference/android/nfc/NdefMessage.html you will see that the NdefMessage constructor can take multiple NdefRecords and the NdefMessage .getRecords method returns an array of NdefRecords from which you can

[android-developers] Re: Gingerbread BroadcastReceiver Issue

2012-08-23 Thread 3c
Would it be possible to have a mailing list for discovered Android bug? I wish I knew this one sooner so I could avoid many user complaints in the first place. And also spending hours digging into my code and trying the reproduce user issues. -- You received this message because you are

Re: [android-developers] android-support-v13.jar not present in my application

2012-08-23 Thread Fabien R
On 23/08/2012 09:17, Vijay Krishnan wrote: Hi all, I am using eclipse for developing android application.When i create my application,android-support-v13.jar is not bundled in my application.Help on this. You have to install the android-support package. Google a bit... -- You

Re: [android-developers] How can I calculate the BPM (Beats per minute) of a sound in a native android project?

2012-08-23 Thread Pau Rodríguez Coloma
Sorry, I made a mistake when I said that I'm developing a native app. What I mean is that I'm using the SDK, not PhoneGap or something similar. El jueves, 23 de agosto de 2012 00:33:36 UTC+2, Spooky escribió: On Wed, Aug 22, 2012 at 03:56:44AM -0700, Pau Rodr??guez Coloma wrote: I'm

Re: [android-developers] how to make updates to my app at store and alert users about new updates?

2012-08-23 Thread Hady Abd alkhalik
بتاريخ الأربعاء، 22 أغسطس، 2012 UTC+2 3:40:49 م، كتب TreKing: On Wed, Aug 22, 2012 at 4:43 AM, Hady Abd alkhalik ibnser...@gmail.comjavascript: wrote: could you provide me the documentation link? http://developer.android.com/distribute/index.html

[android-developers] how to check table is empty or not

2012-08-23 Thread Sadhna Upadhyay
Hi everybody, can some one tell me how to check table is empty or not actually after deleting records from table ,when i click on view button force close error.and if table is not empty then there is not any error on clicking view button so i want to apply a condition if table is empty

Re: [android-developers] Re: Dynamic Array

2012-08-23 Thread Rahul Kaushik
am utilizing: http://developer.android.com/guide/topics/providers/calendar-provider.html but in above url no help for third party source!! I add the item from third party from app it got saved in android calendar, next time when user open app, he add the item and but user did get confused whether

[android-developers] hi friends

2012-08-23 Thread sree android
i friends , i want to display route path between two cities in my app any one help plz -- 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,

Re: [android-developers] How to get every time new/refreshed Current Location

2012-08-23 Thread sree android
hai friends how can find distance between tow cities in my app,help me plz -- 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] edittext focus in tablerow

2012-08-23 Thread vani reddy
Hi, I have a tableRow which i am showing in a dialog which has 5 components aligned like this: EditText1 Spinner1 EditText2 Spinner2EditText3 Button. By default cursor is focused on EditText1 ,I want to make it focus on EditText2 . How to acheive this??? -- Thanks, Vani

Re: [android-developers] How to get every time new/refreshed Current Location

2012-08-23 Thread Rajan Thakrar
first of all you have to find latitude and longitude for both the cities: -- Example : -- City1 latitude : 24.2525697 longitude : 89.9240492 City2 latitude : 24.6081436 longitude : 90.0250385 ok , then according to math formula you can able to find

Re: [android-developers] hi friends

2012-08-23 Thread Asheesh Arya
just go through this link hope you got some idea http://eagle.phys.utk.edu/guidry/android/mapOverlayDemo.html -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers@googlegroups.com To

Re: [android-developers] Re: First android app

2012-08-23 Thread cham herbias
please help me. why is it that i got an error when i run the notepad example # 1? i don't know what happened to this. it says that it has unfortunately stop. and the logcat is here: 08-24 02:07:36.984: I/dalvikvm(629): threadid=1: stack overflow on call to

[android-developers] how to launch Voice Search programatically (ICS)

2012-08-23 Thread Mickaël Gachon
Hi, I'm trying to make an application which can launch the google Voice Search in Ice Scream Sandwitch. In version older than gigerbread, its quite easy as we juste must send the correct intent : Intent i = new Intent(RecognizerIntent.ACTION_WEB_SEARCH); PackageManager

Re: [android-developers] Problem (position 0) is more than necessary Invoked getView · bindView of CursorAdapter When you call a non-UI thread from the thread Handler.post

2012-08-23 Thread IcedNet
Are you having issues lazy loading an adapter with images? Your question is difficult to understand, please try to state the issue in a simple way. Peace, Dan -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send

[android-developers] Re: New to android development

2012-08-23 Thread Mickaël Gachon
It is an eclipse problem. It happens when you try to run an application juste after modifiying a .xml file. You need to remove the .out.xml file created. Then simply click on your project name in the project tree in eclipse and run it. Le samedi 18 août 2012 23:21:02 UTC+2, Saudademaru Envy

[android-developers] Android button position changes while the screen rotating

2012-08-23 Thread Haris
Hai all I am new in android programming. For my application I am using image button and it successfully installed on the device. But when I rotate the screen all the button position get changed... and I need all the button placed at centre of the screen And here is my code

[android-developers] Re: how to check table is empty or not

2012-08-23 Thread Juned Khan
Hi Sadhna, You can use cursor.getcount() method to check this. if its greater then zero then there is some data in table. i.e Cursor cursor = getContentResolver().query( ContactsContract.CommonDataKinds.Phone.CONTENT_URI, null, null, null, null); *

[android-developers] Re: how to check table is empty or not

2012-08-23 Thread Juned Khan
Hi Sadhna, You can use cursor.getcount() method to check this. if its greater then zero then there is some data in table. i.e Cursor cursor = getContentResolver().query( ContactsContract. CommonDataKinds.Phone.CONTENT_URI, null, null, null, null); *

[android-developers] Problem : Always getting previous LastKnownLocation

2012-08-23 Thread Rajan
Hey guys i am trying to get the user's current location through GPS but i always get the previous LastKnownLocation. I am trying this since last 4 to 5 hours but i didn't find the refereched current location. can anybody plz tell me how can i remove a listener of the lastknownlocation. i

[android-developers] Re: edittext focus in tablerow

2012-08-23 Thread Juned Khan
Hi See this http://lmgtfy.com/?q=requestfocus+android Thanks -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this group, send email to

[android-developers] Re: edittext focus in tablerow

2012-08-23 Thread Juned Khan
This is the example: EditText android:id=@+id/editTextCurrentPassword android:layout_width=wrap_content android:layout_height=37dp * requestFocus /* /EditText -- You received this message because you are subscribed to the Google

[android-developers] Re: A necessary question about GPS and Multitasking.. Please help me!

2012-08-23 Thread RichardC
Yes, read about AlarmManager http://developer.android.com/reference/android/app/AlarmManager.html On Thursday, August 23, 2012 12:43:34 AM UTC+1, EricAllen wrote: I have an idea for an

[android-developers] Re: Help with application

2012-08-23 Thread Juned Khan
Use this link to Start your training. hope this will help you http://developer.android.com/training/index.html Thanks Juned Khan -- 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 bring to front stopped (background) application instead of launch new one

2012-08-23 Thread Mark Murphy
Replying back to the list, where this belongs: On Thu, Aug 23, 2012 at 4:35 AM, Andy rejm...@gmail.com wrote: W dniu środa, 22 sierpnia 2012 23:14:24 UTC+2 użytkownik Mark Murphy (a Commons Guy) napisał: No, the activity is destroyed if the user presses the BACK button, at least normally.

[android-developers] Re: connecting database...

2012-08-23 Thread Juned Khan
Hi Laxman, yeah its possible to connect the Mysql database with android application. you need to use JSON to pass the object. see the following links. http://www.helloandroid.com/tutorials/connecting-mysql-database There are lots of tutorial about this please review it and if is there any

[android-developers] Re: How to bring to front stopped (background) application instead of launch new one

2012-08-23 Thread Juned Khan
Hi Andy, Use this code in your activity to do that, public void onBackPressed() { Intent intent = new Intent(Intent.ACTION_MAIN); intent.addCategory(Intent.CATEGORY_HOME); intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK); startActivity(intent); } Thanks Juned

Re: [android-developers] Kindle Fire won't display tabs

2012-08-23 Thread Melanie Peterson
No, I didn't even know they had developer support. I will definitely do that, thanks for the tip! On Wed, Aug 22, 2012 at 11:28 PM, Justin Anderson magouyaw...@gmail.comwrote: Have you tried asking Amazon's developer support? Thanks, Justin Anderson MagouyaWare Developer

Re: [android-developers] Android button position changes while the screen rotating

2012-08-23 Thread Jadranko Bodiroga
i suggest that to use one orientation of screen: try this code-it shows your app only in Portal orientation-but it is optional for your taste :) super.setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_PORTRAIT); -- You received this message because you are subscribed to the Google Groups

[android-developers] Re: Nexus 7 not visible to adb over usb (WIndows 7 x64, up to date Jelly Bean sdk)

2012-08-23 Thread Compguru910
In MTP my Nexus 7 displays just fine. What I think you are having a problem with is the actual driver for the Nexus 7. What I had to do was install the Google USB driver for it, instead of the Asus one because it has adb problems. If you want I can send you the driver and screenshot of mine

[android-developers] Problem with App name with new ADT plugin

2012-08-23 Thread Compguru910
So, I have managed to find a repeatable bug that alot of people are having problems with with the new ADT concerning the new android app wizard. When you create an app, you give it a name. I select dont create clipart image, select the basic activity as opposed to the fragmented one, and

[android-developers] Re: App Name appears as Activity Name

2012-08-23 Thread Compguru910
There is a new bug that many people are running into with the new ADT where the main activities label is used for the app name in the app drawer (so your app name will be the name of your main activity). What you ahve to do to fix this is go to the first activiy in your android manifest and

[android-developers] x86 Emulator Image for Jelly Bean and with Google APIs

2012-08-23 Thread sven
Hi, I've recently tried out the only available x86 emulator image (ICS 4.0.3) with intel CPU-supported virtualization on Windows and the performance improvement of the emulator is amazing. Unfortunately the available image does *not* include the Google API and as my app requires google

Re: [android-developers] x86 Emulator Image for Jelly Bean and with Google APIs

2012-08-23 Thread Mark Murphy
On Thu, Aug 23, 2012 at 9:25 AM, sven sven.span...@gmail.com wrote: Will there be any x86 emulator images including Google APIs? Will there be a x86 emulator image for Jelly Bean? IIRC, Google indicated at Google I|O 2012 that both of those are dependent upon assistance from Intel. -- Mark

Re: [android-developers] Help!!!

2012-08-23 Thread Androideed
I was trying to send and receive string commands to a remote device(Arduino) but the message doesn't go through On Wednesday, 22 August 2012 04:10:07 UTC+1, TreKing wrote: On Mon, Aug 20, 2012 at 1:30 PM, Androideed nnamdi.an...@gmail.comjavascript: wrote: its not working! what am I

Re: [android-developers] Help!!!

2012-08-23 Thread Androideed
Thanks I noticed that after I posted, however that isn't the issue. Is there a way to send and receive messages using TCP connections in android? On Wednesday, 22 August 2012 04:49:41 UTC+1, krishna wrote: what is viewtext? is it TextView or EditText? if you want to get text from

Re: [android-developers] x86 Emulator Image for Jelly Bean and with Google APIs

2012-08-23 Thread sven
ah, thanks for the info. These are bad news... -- 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: Problem : Always getting previous LastKnownLocation

2012-08-23 Thread lbendlin
The code works as you designed it. To get fresh locations you need to fully implement onLocationChanged() On Thursday, August 23, 2012 7:53:25 AM UTC-4, Rajan wrote: Hey guys i am trying to get the user's current location through GPS but i always get the previous LastKnownLocation. I am

Re: [android-developers] How can I calculate the BPM (Beats per minute) of a sound in a native android project?

2012-08-23 Thread lbendlin
You most likely need the NDK for that. So Spooky's advice still stands. On Thursday, August 23, 2012 5:21:52 AM UTC-4, Pau Rodríguez Coloma wrote: Sorry, I made a mistake when I said that I'm developing a native app. What I mean is that I'm using the SDK, not PhoneGap or something similar.

[android-developers] what mean this code?

2012-08-23 Thread Ivoney Borges
requestWindowFeature(Window.FEATURE_INDETERMINATE_PROGRESS); -- 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] Abridged summary of android-developers@googlegroups.com - 74 Messages in 55 Topics

2012-08-23 Thread tandra anil
-- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this group, send email to android-developers+unsubscr...@googlegroups.com For more options, visit

[android-developers] networking on the main thread?

2012-08-23 Thread bob
Is there any way to tell Android to let me do networking on the main thread? This will help me when I'm testing stuff. -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to

[android-developers] Re: what mean this code?

2012-08-23 Thread bob
It shows a tiny circular progress bar in your window titlebar. On Thursday, August 23, 2012 9:58:32 AM UTC-5, Ivoney Borges wrote: requestWindowFeature(Window.FEATURE_INDETERMINATE_PROGRESS); -- You received this message because you are subscribed to the Google Groups Android Developers

Re: [android-developers] networking on the main thread?

2012-08-23 Thread Raghav Sood
Set your build target to something below Honeycomb. thanks -- Raghav Sood http://www.appaholics.in/ - Founder http://www.apress.com/9781430239451 - Author +91 81 303 77248 -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this

Re: [android-developers] Re: App Name appears as Activity Name

2012-08-23 Thread Tor Norbye
Please file it at http://b.android.com and use category Component-Tools . -- Tor On Thu, Aug 23, 2012 at 6:19 AM, Compguru910 compguru...@gmail.com wrote: There is a new bug that many people are running into with the new ADT where the main activities label is used for the app name in the app

Re: [android-developers] Problem with App name with new ADT plugin

2012-08-23 Thread Tor Norbye
This is probably an accidental side effect of the fact that the New Project wizard now no longer hardcodes a simple hello world activity, it lets you pick between several different types of activities, and these are also used when you add an activity to a project (where you do want each activity

Re: [android-developers] networking on the main thread?

2012-08-23 Thread Larry Meadors
Or just don't do it. :) It's a terrible habit, even for testing. Async tasks are so simple, there's not really a good excuse for it. Larry On Thu, Aug 23, 2012 at 9:12 AM, Raghav Sood raghavs...@gmail.com wrote: Set your build target to something below Honeycomb. thanks -- Raghav Sood

Re: [android-developers] Re: contextmenu

2012-08-23 Thread aek
On Thursday, August 23, 2012 4:12:44 AM UTC+1, MagouyaWare wrote: Take a look at the logcat output... What do you see? It should give you the reason for the crash as well as a stack trace that often points the exact file and line number that is the cause. Thanks, Justin Anderson

[android-developers] Best Practices for many calls to API

2012-08-23 Thread Christian Palomares (ShinjiDev)
Hi I'm developing an Android App for an enterprise(just for smartphone, no tablet). This app needs to make many request to an API to fill 3 or 4 carrousels, the problem is that it takes too much time, i believe this happens because the request to the API are made sequentially. Is there any way

[android-developers] Re: Catch HTTP error code with WebView

2012-08-23 Thread farble1670
that is not a solution. if we require anything more complicated than a simple fetch of a single page, this doesn't work. the ability to completely override resource loading isn't available until API 11. On Monday, March 15, 2010 2:40:43 AM UTC-7, Manuel Vela wrote: Ok, the only solution I've

Re: [android-developers] Best Practices for many calls to API

2012-08-23 Thread Larry Meadors
I use an async task and a listener interface on my activity/fragment. So, I create an interface like this: public interface SearchResultListener { public void onSearchResults(MapString, ListContentListItem results); } Then my activity/fragment implements that interface: public class

Re: [android-developers] how to make updates to my app at store and alert users about new updates?

2012-08-23 Thread TreKing
On Thu, Aug 23, 2012 at 4:41 AM, Hady Abd alkhalik ibnserin2...@gmail.comwrote: i have thousands of android tablets and we will put APK file on the ROM of Android OS to be a built in app and then will put the same APK file to Google play.do you think any update on Google play will reflect

Re: [android-developers] How to get every time new/refreshed Current Location

2012-08-23 Thread TreKing
On Thu, Aug 23, 2012 at 2:03 AM, Rajan Thakrar r.d.thak...@gmail.comwrote: can you please provide some code snippet, so i can understand. There is a section in the documentation on finding the user's location. Read it, learn it, love it.

Re: [android-developers] Best Practices for many calls to API

2012-08-23 Thread TreKing
On Thu, Aug 23, 2012 at 11:53 AM, Christian Palomares (ShinjiDev) palomare...@gmail.com wrote: Or maybe a best practice for an Android app which needs to make too many API requests??? This is really going to depend on the API in question and your app, so I don't think you're going to find

Re: [android-developers] Re: contextmenu

2012-08-23 Thread bob
Sounds like *getMenuInfo* is returning null. On Thursday, August 23, 2012 11:33:13 AM UTC-5, aek wrote: On Thursday, August 23, 2012 4:12:44 AM UTC+1, MagouyaWare wrote: Take a look at the logcat output... What do you see? It should give you the reason for the crash as well as a stack

Re: [android-developers] Best Practices for many calls to API

2012-08-23 Thread Larry Meadors
True: Based on the question (the problem is that it takes too much time) I assumed they were going over the wire, in which case, doing them as I suggested would help. But if the delay is due to CPU constraints rather than waiting for responses, my suggestion would probably make it worse. :-D

Re: [android-developers] networking on the main thread?

2012-08-23 Thread bob
I set it to 2.3.3, and this did not work. On Thursday, August 23, 2012 10:12:01 AM UTC-5, Raghav Sood wrote: Set your build target to something below Honeycomb. thanks -- Raghav Sood http://www.appaholics.in/ - Founder http://www.apress.com/9781430239451 - Author +91 81 303 77248

Re: [android-developers] Android button position changes while the screen rotating

2012-08-23 Thread bob
Not sure if this is the same, but I put this in my AndroidManifest.xml: activity android:screenOrientation=portrait On Thursday, August 23, 2012 7:51:54 AM UTC-5, baturanija1 wrote: i suggest that to use one orientation of screen: try this code-it shows your app only in Portal

Re: [android-developers] Help!!!

2012-08-23 Thread bob
Socket socket = new Socket(192.168.0.196, 1000); OutputStream ostream = socket.getOutputStream(); String greeting_Command = new String( HI ); byte[] b = greeting_Command.getBytes(us-ascii); ostream.write(b); istream = socket.getInputStream(); byte[] reply = new byte[4096];

Re: [android-developers] Best Practices for many calls to API

2012-08-23 Thread Christian Eduardo Palomares Peralta
I believe the problem is that it REALLY takes too much time, because the requests are made sequentially. I think it can be made with many asynctasks. Thanks for the tips. Sincerely 2012/8/23 Larry Meadors larry.mead...@gmail.com True: Based on the question (the problem is that it takes too

[android-developers] Re: how to check table is empty or not

2012-08-23 Thread bob
You can do: select count(*) from my_table; This gives you the number of records. If it's 0, table's empty. On Thursday, August 23, 2012 5:12:58 AM UTC-5, Sadhna Upadhyay wrote: Hi everybody, can some one tell me how to check table is empty or not actually after deleting

[android-developers] My first Android App is not working

2012-08-23 Thread RKS
Not saying it should, it is my first after all, but I'm trying and so far there's been some progress here and there but tying it all together now isn't working out right. I'm new to Java as well so I'm sure the problems are related to my poor skills writing java code at this point. Please don't

Re: [android-developers] Android button position changes while the screen rotating

2012-08-23 Thread TreKing
On Thu, Aug 23, 2012 at 6:30 AM, Haris haris...@gmail.com wrote: But when I rotate the screen all the button position get changed... and I need all the button placed at centre of the screen Try using a LinearLayout with the proper gravity settings. On Thu, Aug 23, 2012 at 7:51 AM,

[android-developers] My first Android App is not working

2012-08-23 Thread RKS
Not saying it should, it is my first after all, but I'm trying and so far there's been some progress here and there but tying it all together now isn't working out right. I'm new to Java as well so I'm sure the problems are related to my poor skills writing java code at this point. Please don't

[android-developers] Highlighting certain parts of image!

2012-08-23 Thread Talha Qamar
Hi,How to highlight and selecting parts of an image.I have searched on stack overflow but couldn't understand much of it.I some body have any simple but impressive example or tutorial.Please do share with me.Thanks -- You received this message because you are subscribed to the Google Groups

[android-developers] How to manage slow internet connections?

2012-08-23 Thread Christian Palomares (ShinjiDev)
Hi Is there any recommended way to manage slow internet connections in an Android app???I've tried with many try/catch, but i don't think is the best way to do it :( -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group,

Re: [android-developers] How to manage slow internet connections?

2012-08-23 Thread TreKing
On Thu, Aug 23, 2012 at 2:02 PM, Christian Palomares (ShinjiDev) palomare...@gmail.com wrote: Is there any recommended way to manage slow internet connections in an Android app??? In what sense? There's nothing really to manage - it's just not fast. I've tried with many try/catch, but i

Re: [android-developers] My first Android App is not working

2012-08-23 Thread TreKing
On Thu, Aug 23, 2012 at 1:59 PM, RKS sean.sambor...@live.com wrote: the button's actually do nothing. Also, the button set to the ACTION_CALL intent does nothing as well. Narrow your problem to this. You've posted way too much code for people to parse through. Use your debugger. Determine

Re: [android-developers] How to manage slow internet connections?

2012-08-23 Thread Christian Eduardo Palomares Peralta
But, when the internet connection is really slow it throws a timeout, that's why i'm using try/catch. Sometimes with the slow internet connection it forces to close the app. 2012/8/23 TreKing treking...@gmail.com On Thu, Aug 23, 2012 at 2:02 PM, Christian Palomares (ShinjiDev)

[android-developers] Synchronize two graphs

2012-08-23 Thread TheNetStriker
I have tree GraphViews (https://github.com/jjoe64/GraphView) in my application and I want to synchronize the viewports of these three graphs. I've already created a method which reports when the viewport was changed and one to set the viewport. But when I scroll in one graph the onDraw method

Re: [android-developers] How to manage slow internet connections?

2012-08-23 Thread TreKing
On Thu, Aug 23, 2012 at 2:12 PM, Christian Eduardo Palomares Peralta palomare...@gmail.com wrote: But, when the internet connection is really slow it throws a timeout, that's why i'm using try/catch. OK then. Sometimes with the slow internet connection it forces to close the app.

Re: [android-developers] Re: How to bring to front stopped (background) application instead of launch new one

2012-08-23 Thread TreKing
On Thu, Aug 23, 2012 at 7:10 AM, Juned Khan jkhan6...@gmail.com wrote: Hi Andy, Use this code in your activity to do that, public void onBackPressed() { Intent intent = new Intent(Intent.ACTION_MAIN); intent.addCategory(Intent.CATEGORY_HOME);

Re: [android-developers] My first Android App is not working

2012-08-23 Thread RKS
I do that and people tell me things like, You need to insert the proper XML statement at the top of your file. That's there, but not printing it here makes people assume I've left it out. The Logcat has zero response from a button onClick. It's as if the button has no onClick function at all.

Re: [android-developers] how to launch Voice Search programatically (ICS)

2012-08-23 Thread TreKing
On Thu, Aug 23, 2012 at 6:23 AM, Mickaël Gachon gachon.mick...@gmail.comwrote: I'm trying to make an application which can launch the google Voice Search in Ice Scream Sandwitch. For what purpose? In general, hardcoding package names as you are doing is a bad idea and error-prone, as you have

Re: [android-developers] Securize applications

2012-08-23 Thread TreKing
On Thu, Aug 23, 2012 at 12:55 AM, Chony daniel.ch...@gmail.com wrote: I need to know how to block access to a list of applications from another application to manage it, is that possible? I'm not entirely sure what you're asking, but I'll say no.

Re: [android-developers] Re: contextmenu

2012-08-23 Thread aek
Thank you bob, exactly item.getMenuInfo(); return a null value, but I dont know why? however item.getItemId() works fine. as shown bellow. without your help guys, it would have been for me really a mysterious/aborious error to fix, thanks for - public boolean

Re: [android-developers] My first Android App is not working

2012-08-23 Thread TreKing
On Thu, Aug 23, 2012 at 2:28 PM, RKS sean.sambor...@live.com wrote: The Logcat has zero response from a button onClick. It's as if the button has no onClick function at all. Then check the code where you set up the buttons and their click handlers. If you don't know what the issue is, post

  1   2   >