Re: [android-developers] Fwd: Android doubt

2013-08-28 Thread Sumedh Jiwane
Nothing is much clear from the description of your problem. I am suspecting that you are facing the UI issue. Are you calling logout function in main thread/ui thread? If so replace it with worker thread. Alternatively you can start a service using AlarmManager. On Fri, Aug 23, 2013 at 4:37 PM,

Re: [android-developers] how to load correct images i have all size images ldpi hdpi xhdpi xxhdpi

2013-08-27 Thread Sumedh Jiwane
Try refreshing the folders, clean and rebuild. On Tue, Aug 27, 2013 at 12:24 PM, Amit Mangal wrote: > any idea guys ? > > > On Tue, Aug 27, 2013 at 10:50 AM, Amit Mangal > wrote: > >> drawable-hdpi >> drawable-ldpi >> drawable-mdpi >> drawable-xhdpi >> drawable-xxhdpi >> >> All images kept in

[android-developers] How to handle GPRS disconnection

2012-07-03 Thread Sumedh
is GPRS connection. So, please tell me how should i handle GPRS disconnection in my application Regards, Sumedh -- 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@googlegro

[android-developers] Getting GPS values without LocationManager's onLocationChanged

2012-06-03 Thread Sumedh
Hi, I developed a code in which i want to access GPS values like lattitude, longitude, speed and date-time for every fixed interval. Currently I am using LocationManager's onLocationChanged() method to get those values. but I want those GPS values for fixed interval irrespective of any event. Is t

[android-developers] Version problem for camera application

2012-04-20 Thread Sumedh
hi, I have created a camera application which will capture the image and store it on SD card as well as on external server. This application works fine on android 2.1 version but when i try to execute same application on gteater than 2.2 versions it wont work and gives exception "fail to connect c

Re: [android-developers] Extracting AMR data from RTP payload

2012-02-13 Thread Sumedh Jiwane
RTP describes different payload format for different codecs. You can study the RTP payload format for AMR codec and retrieve the data. You can use available RTP de-packetizer if you are using any multimedia framework. Regards, Sumedh On Mon, Feb 13, 2012 at 8:34 PM, NITIN wrote: > Hi > &

Re: [android-developers] installing APK without eclipse/android SDK

2012-02-13 Thread Sumedh Jiwane
You might have not done the release build. On Mon, Feb 13, 2012 at 3:23 PM, fei ji wrote: > Store this apk to sd card. Then using some apps like EsExplore to open it > then android will install it automatically. > > On Mon, Feb 13, 2012 at 2:30 AM, John Goche wrote: > >> Hello, >> >> I would lik

Re: [android-developers] Re: multicasting in android

2012-02-12 Thread Sumedh Jiwane
me know whether it works. Regards, Sumedh On Mon, Feb 13, 2012 at 10:50 AM, sangram wrote: > Can someone help with the above query? > > regards, > sangram > > On Feb 9, 5:06 pm, sangram wrote: > > Hi, > > We have enabled multicast streaming in one of our machine

[android-developers] Re: How to check for GPS

2012-01-17 Thread Sumedh
Thnx for reply Kris my apllication does contain the method LoactionListener of LocationManager I want to check that if the device itself is GPS enabled or not is it possible ? Sumedh On Jan 17, 12:51 pm, Kristopher Micinski wrote: > Try to listen for a gps update and see if you get

[android-developers] How to check for GPS

2012-01-16 Thread Sumedh
any way to test for GPS connection plz help me Sumedh -- 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-

[android-developers] android rooting

2011-12-03 Thread Sumedh
Hi, i have gone through how to root mobile. but is it possible to have 2level login for phone i.e one with normal access and other with root access. can i put some username and password for root login ? thanks in advance Sumedh -- You received this message because you are subscribed to the

[android-developers] Re: getting lattitude and longitude using GPS

2011-12-03 Thread Sumedh
? plz help me to understand the issue. thanks in advance Sumedh On Dec 4, 10:01 am, Sumedh wrote: > Hi, > > Working on application in which I try to get current lat-long and send > it to server on which a listener is executing which will listen the > data comning on port. > >

[android-developers] getting lattitude and longitude using GPS

2011-12-03 Thread Sumedh
any fixed interval, and aftr some time programs stops, means the code executes but wont transmit the lat-long values plz help me to understand the issue. thanks in advance Sumedh -- You received this message because you are subscribed to the Google Groups "Android Developers" group.

[android-developers] rooting android phone

2011-11-29 Thread Sumedh
hi, I want to execute an application which is having root permission, is it necessary to root my phone to run this application. 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@g

[android-developers] getting parse error

2011-11-22 Thread Sumedh
Hi, I have developed an application in eclipse. And created its apk file by using key. For creating an application I have used the API level 7 and also tried with API level 3. When I try to download the apk on my phone (Micromax A60) with android version Eclair 2.1 it gives me 'Parse Error' with n

[android-developers] running an application at background

2011-11-18 Thread Sumedh
Hi, I have developed an application which will get the lat-long and store these lat-long values in database server. But, the problem is application executes on front screen. Want to execute application as back ground application. please tell me the way to do this. thnx -- You received this messa

Re: [android-developers] Re: HTTP Live Streaming for MP4, 3gp video files in Android

2011-10-19 Thread Sumedh Jiwane
Hinting MP4 simply adds the Hinting track to MP4 files for progressive download. This is helpful if you want to stream file. Hinting tracks are additional tracks for quick access to data. Check the android document for audio/video codec supported and match them against the file that you are playing

Re: [android-developers] Http Live Streaming

2011-10-12 Thread Sumedh Jiwane
Simple way to test HLS is to type the HLS link on web-browser and check whether it plays. Normally HLS link ends with .m3u8 extension. Also you can check whether link is up or not by running it on VLC or Quicktime player. Regards, Sumedh On Wed, Oct 12, 2011 at 5:29 PM, bhargavi wrote: >

[android-developers] Re: onLocationChange never get called

2011-08-28 Thread Sumedh
Hi, I m also trying to do the same application. And managed to get lat-lon,date ,time. But this code works on emulator(eclipse) when i install the same apk on android phone it doesn,t work my code is: public class TestBroadcastActivity extends Activity implements LocationListener { private

[android-developers] Re: onLocationChange never get called

2011-08-28 Thread Sumedh
Hi, I m also trying to do the same application. And managed to get lat-lon,date ,time. But this code works on emulator(eclipse) when i install the same apk on android phone it doesn,t work my code is: public class TestBroadcastActivity extends Activity implements LocationListener { private

[android-developers] Re: Error for getActivity() in alarm manager

2011-08-26 Thread Sumedh
I have resolved the error by AlarmManager alarms = (AlarmManager)context.getSystemService(Context.ALARM_SERVICE); but now at the time of execution getting exception--- 08-26 16:29:52.850: ERROR/AndroidRuntime(382): Uncaught handler: thread main exiting due to uncaught exception 08-26 16:29:53.0

[android-developers] Error for getActivity() in alarm manager

2011-08-26 Thread Sumedh
Hi , trying to develope an application for scheduling the task using the AlarmManager. but getting an error "The method getActivity() is undefined for the type TestBroadcastActivity" My class is:- public class TestBroadcastActivity extends BroadcastReceiver { @Override public void

[android-developers] Using socket programing to communicate between two emulators in eclipse

2011-08-21 Thread Sumedh
Hi, I am working on an application in which trying to make connection between two emulators through socket programing. But getting an exception Code for Server: public class TCPserverActivity extends Activity { private TextView serverStatus; // default ip

Re: [android-developers] Need ideas on encrypting h.264 videos on Android

2011-08-12 Thread Sumedh Jiwane
actually not sure what do you want to do. can you be elaborate more. Do you want to play local file or remote file. Do you want to stream or download and play? On Fri, Aug 12, 2011 at 8:28 AM, Peter Taps wrote: > Folks, > > Our application requires that a H.264 video be kept on the disk in an >

Re: [android-developers] Re: Force Close Issue

2011-08-11 Thread Sumedh Jiwane
The log is generally what you what you seen in logcat console while debugging. But here is the catch since it happens when you are moving and you can't debug at that time, you can you Logger application available from market. It requires SD/micro SD card to save the logs. You can also choose to ema

[android-developers] Executing .apk file through emulator on pc

2011-08-08 Thread Sumedh
Hi, I am trying to execute the .apk file through emulator, but it is giving an exception. This .apk file is an autogenerated file in eclipse. Is it possible to run this autogenerated .apk file through emulator? if yes, please tell me the procedure. thanks in advance. -- You received this message

[android-developers] connecting to tcp/ip server using gprs

2011-08-01 Thread Sumedh
Hi, How to setup connection to TCP/IP server using GPRS, in emulator, please help thanx in advance -- 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] Access External Database

2011-08-01 Thread Sumedh
I want to access data which is stored on external database server. is it possible? if yes please tell me how thanx in advance -- 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@googlegrou

Re: [android-developers] Which OS is more preferable for Android apps, middleware,source/OEM level development.

2011-06-24 Thread Sumedh Jiwane
I would suggest to use Linux (Ubuntu) in your case. On windows if you want to deploy/test application on different devices you need to download different OEM USB drivers which is painful. P.S. I am developing on windows XP. On Fri, Jun 24, 2011 at 6:34 AM, Nainala Shrinivas wrote: > Hi, > > Coul

[android-developers] Re: install android sdk tools on windows 7

2011-06-17 Thread sumedh
this really works! On Apr 29, 3:20 pm, rajul jain wrote: > hey great works for me tooo > > On Thu, Apr 28, 2011 at 10:28 PM, Steve Graham < > > > > solitary.wandere...@gmail.com> wrote: > > I had the same problem and in the archives I found a fellow saying to > > hit the back key and then the nex