[android-developers] Immediate Opportunity for UI Developer at Chicago, IL :: Kindly share the resumes to dee...@kanisol.com

2018-05-23 Thread deepak kannoji
*Hi,* Hope you are doing awesome today…… My name is* Deepak Kannoji *working as* Senior Executive recruiter in Kani Solutions Inc. * *Kani Solutions, Inc.* A New Jersey based Technology Consulting and Staffing services company. Our Industry focus is Health & Life Sciences, En

[android-developers] Direct client requirement for for Senior Salesforce Developer for 12+ Months Contract at NYC, NY :: kindly share the resumes to dee...@kanisol.com

2018-05-23 Thread deepak kannoji
*Hi,* Hope you are doing awesome today…… My name is* Deepak Kannoji working as Senior Executive recruiter in Kani Solutions Inc. * I have a wonderful Job Opportunity for you…. Please review the Job Description and if interested please get back to me with your updated

[android-developers] Immediate Opportunity for Enterprise Agile coach at NYC, NY / Houston, TX/ Columbus, OH

2018-05-23 Thread deepak kannoji
*Hi,* Hope you are doing awesome today…… My name is* Deepak Kannoji *working as* Senior Executive recruiter in Kani Solutions Inc. * *Kani Solutions, Inc.* A New Jersey based Technology Consulting and Staffing services company. Our Industry focus is Health & Life Sciences, En

[android-developers] Re: Android Ble With Advertising

2017-01-28 Thread Deepak Paste
I am also looking for the same program to connect multiple ble devices (HM 10). Did you find any answer? On Monday, 22 February 2016 10:42:55 UTC+5:30, vipin...@jaarvis.com wrote: > > I am working on BLE and get stuck in finding weather android device can > transmit and receive data over BLE at

[android-developers] Android open accessory Mode Issue.

2016-09-03 Thread Deepak Kapoor
Hi Everyone, I have been able to successfully do the communication between my embedded Device (RaspberryPi) and android device using AOA method. But once the phone is ut into AOA mode I have to unplug the usbcable and kill the app before putting my phone again into AOA mode. Is there any way I

[android-developers] Activity TextView displayed incorrect value received from Service Thread.

2016-04-22 Thread Deepak Kumar
value in TextView. So, please let me know how to solve this problem. Thanks & regards, Deepak Kumar -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To unsubscribe from this group and stop receiving emails from it, send an ema

[android-developers] Camera crashes when launched with ACTION_IMAGE_CAPTURE

2015-10-05 Thread Deepak Mishra
My app is using the following code to launch the camera app to capture an image and return a bitmap : Intent intent = new Intent(android.provider.MediaStore.ACTION_IMAGE_CAPTURE); intent.putExtra("return-data", true); getActivity().startActivityForResult(intent,

[android-developers] Re: the download manager can't resume the download at broken point

2015-04-21 Thread deepak
that you can know what is the actual request and response after it is paused. Thanks, Deepak On Tuesday, 21 April 2015 06:52:06 UTC+5:30, Zhihong GUO wrote: Hello all, I want the download manager to download something from a server, here are the http response message from server for the download

[android-developers] Libnice for Android P2P

2014-12-18 Thread deepak
I am trying to implement P2P live video streaming from IP Camera to Android. For this i am planning to compile libnice for android using the http://insembedded.wordpress.com/2014/04/09/import-libnice-on-android/ . But i am getting build errors given below stunagent.c: Assembler messages:

[android-developers] Libnice for Android P2P

2014-12-18 Thread deepak
I am trying to implement P2P live video streaming from IP Camera to Android. For this i am planning to compile libnice for android using the http://insembedded.wordpress.com/2014/04/09/import-libnice-on-android/ . But i am getting build errors given below stunagent.c: Assembler messages:

[android-developers] P2P Library For Android ?

2014-10-23 Thread deepak
I am trying to implement P2P video streaming from IP Camera to Android. Anyone can suggest me a good P2P library that can be used for peer to peer streaming from IP camera to Android App ? -- You received this message because you are subscribed to the Google Groups Android Developers group. To

Re: [android-developers] Re: Sync Adapter - Syncs frequently

2014-07-24 Thread Deepak Soni
Blake, If I set sync automatic to false then periodic sync does not trigger. I wanted overnight but the sync was never triggered. Anyways if you come across any such issue and have solved it please do let me know and thank you very much for your time. Deepak On Jul 23, 2014 11:53 PM, G. Blake

Re: [android-developers] Re: Sync Adapter - Syncs frequently

2014-07-24 Thread Deepak Soni
...@gmail.com wrote: Apparently, the order in which you call the ContentResolver methods and the actual account creation, are also significant. Regards, *Deepak* -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email

Re: [android-developers] Re: Sync Adapter - Syncs frequently

2014-07-23 Thread Deepak Soni
Blake, I do have this method call (below) but if I don't set set this the periodic sync does not execute, should I not be setting this to true? ContentResolver.setSyncAutomatically(account, Table.AUTHORITY, true); Regards, *Deepak* On Wed, Jul 23, 2014 at 11:11 AM, G. Blake Meike blake.me

Re: [android-developers] Re: Sync Adapter - Syncs frequently

2014-07-22 Thread Deepak Soni
Hello Blake, Did you get a chance to look through the code snippets I shared? I still haven't been able to figure out the cause of the account sync in every ~10 mins. Thank you for your time. Regards, *Deepak* On Sun, Jul 20, 2014 at 5:13 PM, Deepak Soni deepakvs...@gmail.com wrote: Hope

Re: [android-developers] Re: Sync Adapter - Syncs frequently

2014-07-20 Thread Deepak
Anybody faced similar issue and have resolved it please let me know the solution -- 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

[android-developers] Re: Android XML

2014-07-20 Thread Deepak
Have you overridden onBackPressed in activity B in which case you should call this.finish() in B. Your code should look similar to this class A : Activity { onClick(..) { start activity B } } class B : Activity { onBackPressed() { this.finish(); /* this takes you back to the previous

Re: [android-developers] Re: Sync Adapter - Syncs frequently

2014-07-20 Thread Deepak Soni
applications? Regards, *Deepak* On Sun, Jul 20, 2014 at 12:37 PM, G. Blake Meike blake.me...@gmail.com wrote: Sorry, missed the note that you were passing false in the original. I've build several Sync Adapters that sync periodically. They seem to work fine. It is hard to guess what could be wrong

[android-developers] Sync Adapter - Syncs frequently

2014-07-15 Thread Deepak
I've written a sync adapter which I scheduled to run every 6 hours but it synchronises every few minutes. Below is lines of code which enables sync and adds a periodic sync (period is in seconds) ContentResolver.setIsSyncable(account, Table.AUTHORITY, 1);

Re: [android-developers] Re: Sync Adapter - Syncs frequently

2014-07-15 Thread Deepak Soni
Yes I do have calls to notifyChange and I'm passing false. I tried several other things as I listed in my initial post Deepak On Jul 15, 2014 11:55 PM, G. Blake Meike blake.me...@gmail.com wrote: Do you have any calls to ContentResolver.notifyChange() in your app? If you pass true

[android-developers] Set Playback speed in Android Media Player

2013-10-16 Thread deepak
I am live streaming using HLS from a ipCamera to Android phone, but the video is always playing in fast forward. Is there any way we can reduce the playback speed of the native android media player or is there any other method by which i might be able to fast forward issue? Thanks in advance

[android-developers] Set Buffer Time In Android Media Player

2013-08-12 Thread deepak
I am trying to live stream from my ipCamera to android phone using Wowza. I am able to view the video but the video is buffering after every 15 seconds and then it plays faster for sometime and then again buffers.Is there any options in the Media Player where by i can change this buffer time?

[android-developers] Re: Deepak Yadav ..6/4/2013 4:49:43 PM

2013-06-04 Thread Deepak Yadav
http://www.cr5.nl/djqxn/jjvuuuxphaoltfxrmgr.owocahokpf -- -- 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: Read the destination Number

2013-01-07 Thread deepak
, let me know. Regards, Deepak On Wednesday, 2 January 2013 17:50:41 UTC+5:30, Makdu wrote: Hi all\ In my application, i need to show the toast message when a call is received. I have to show the destination number in this case. ie if the call is coming to 98788000 number, then when call

[android-developers] Beginning ADK

2012-12-28 Thread Deepak Mishra
for last couple of hours to get this info ! Thanks, Deepak -- 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

[android-developers] Re: Video (VideoView) flickering and/or doesn't display on ICS (but works fine on Android = 2.x)

2012-10-12 Thread Deepak Samuel Rajan
even I am facing same problem as stated by Mathias anyone who know the solution ? -- 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

[android-developers] Connection reset by peer - Bluetooth

2012-07-11 Thread Deepak Kumar
(); } } catch (Exception e) { e.printStackTrace(); } } Log.d(TAG, Inside Outside read Catch with *erroe*block); } Thanks Regards, DEEPAK KUMAR -- You received this message because you are subscribed

[android-developers] mapviewError

2012-07-02 Thread deepak mamdapure
: Couldn't get connection factory client plz how to resolve this problem -- 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] mapviewError

2012-07-02 Thread deepak mamdapure
: Couldn't get connection factory client plz how to resolve this problem -- 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: mapviewError

2012-07-02 Thread deepak mamdapure
‘ this will prompt for the password keytool -list -alias temp.keystore -keystore Keys/temp.keystore On Jul 2, 3:00 pm, arun kumar hariarun2...@gmail.com wrote: Its due to map api key problem.please check your map api key. On Mon, Jul 2, 2012 at 3:27 PM, deepak mamdapure developer.it.a...@gmail.com wrote

[android-developers] Re: How to implement your own LocationProvider

2012-06-18 Thread Deepak Mishra
I am still hoping for a solution... Did you get anything ? Thanks ! On Tuesday, 3 August 2010 12:40:36 UTC+5:30, Marcus Wolschon wrote: Hello, I would like to implement a new LocationProvider. In this case, one that uses OpenCellID.org. I figured the pattern wou be quite similar to

[android-developers] mapviewError

2012-06-13 Thread deepak mamdapure
plz Suggest me any one i wrote all code for mapview but it does not appeair on emulator it shows only blocks on emulator my code is below pls check is there any correction plz tell me .there is no any error in this code plz suggest me. thank you public class mapDemo extends

[android-developers] mapviewError

2012-06-13 Thread deepak mamdapure
plz Suggest me any one i wrote all code for mapview but it does not appeair on emulator it shows only blocks on emulator my code is below pls check is there any correction plz tell me .there is no any error in this code plz suggest me. thank you public class mapDemo extends

Re: [android-developers] mapviewError

2012-06-13 Thread deepak mamdapure
Singh Rathore nsr.curi...@gmail.com wrote: On Wed, Jun 13, 2012 at 4:57 PM, deepak mamdapure developer.it.a...@gmail.com wrote: plz Suggest me any one i wrote all code for mapview but it does not appeair on emulator it shows only blocks on emulator my code is below pls check

Re: [android-developers] mapviewError

2012-06-13 Thread deepak mamdapure
But i have generated Map Api key more than three times i have already used all these three api keys but there is nothing any output on emulator (Deepak Mamdapure) You only live once, once is enough. -- You received this message because you are subscribed to the Google Groups

Re: [android-developers] mapviewError

2012-06-13 Thread deepak mamdapure
No SHA1 actually i have used MD5 fingerprint On 13 June 2012 19:18, Narendra Singh Rathore nsr.curi...@gmail.com wrote: On Wed, Jun 13, 2012 at 7:02 PM, deepak mamdapure developer.it.a...@gmail.com wrote: But i have generated Map Api key more than three times i have already used all

Re: [android-developers] mapviewError

2012-06-13 Thread deepak mamdapure
android:layout_height=fill_parent android:apiKey=0EiZlofWi0A1bWbuAAkvYO92zEsfkfQj7vOT1ig / On 14 June 2012 09:14, deepak mamdapure developer.it.a...@gmail.com wrote: No SHA1 actually i have used MD5 fingerprint On 13 June 2012 19:18, Narendra Singh

[android-developers] DynamicUIGeneration

2012-06-12 Thread deepak mamdapure
Any one can help me how to develop an android application by using xmlparsing concept...actually i want do develop application through dynamic ui generation ...but i dont know how to generate Dynamic UI screen..so please any one help me how to generate Dynamic UI in android

Re: [android-developers] Re: Running camera preview while recording video at the same time

2012-06-12 Thread deepak mamdapure
W_NAMEMarried?/W_NAME W_RENDERCHECK_BOX/W_RENDER W_DEFAULT Yes/W_DEFAULT /Mobile_Widget Mobile_Widget id=103 W_NAME Description/W_NAME W_RENDERLONG_DESCRIPTION/W_RENDER /Mobile_Widget /MAIN_XML (Deepak Mamdapure) You only live once, once is enough. -- You received this message because

Re: [android-developers] WCF web service- use in android

2012-06-12 Thread deepak mamdapure
=en -- its very simple shashi you can use soap request and soap response with your code..it works with android very nice (Deepak Mamdapure) You only live once, once is enough. -- You received this message because you are subscribed to the Google Groups Android Developers

[android-developers] join this

2012-06-12 Thread deepak mamdapure
https://groups.google.com/group/ashwathandroiddeveloper -- 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] how to save and retrieve data from microsoft sql server management studio in android

2012-06-12 Thread deepak mamdapure
+ /soap:Envelope; (Deepak Mamdapure) You only live once, once is enough. -- 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

[android-developers] Impact of Android Customizations by device manufacturers

2012-05-21 Thread Deepak
version, cross device incompatibilities and strategies to deal with them would be very helpful. Thanks a lot in advance. Regards, Deepak -- 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

[android-developers] Add Weekly,Fortnightly,Monthly Recurring events to calendar.

2012-04-22 Thread Deepak
I'm trying to add event to the calendar programatically in Android API 11. It does not seem to be working, I've pasted the code, also didn't find anything on adding fortnightly events. Please if anyone can tell what is the issue in the code below. ContentValues event = new ContentValues();

[android-developers] Re: What is the purpose of android zygote process?

2012-04-03 Thread Antony Deepak
Think about Zygote in its biological significance The first cell formed when an organism is produced.. So, when an application is launched , the core process for the application is forked from Zygote. Zygote has all the core libraries and hence all applications share these libraries from

[android-developers] Re: ImageView

2012-01-11 Thread Deepak Garg
You can use zoomview controls on the screen which will help to zoom in- zoom out. abhijeet tomar wrote: I have define a imageview in main.xml and a image store in drawable and set the path.Image is displaying properly on the screen but i want, image working as a resizeable like map.when we

[android-developers] Text Selection Action bar not appearing if using with JQuery Script in Android 3.1 onwards

2012-01-11 Thread Deepak Garg
Case-1 If we are not using JQuery Mobile script in our page, then there is no need of writing any code(like- emulateShiftHeld method) to enable the text selection on Webview in Android 3.0 onwards (3.0, 3.1, 3.2, 4.0, 4.0.1) Case-2 If we are using JQuery Mobile script in our page, upto Android

[android-developers] Re: new Developer

2012-01-11 Thread Deepak Garg
hi Astik Patel wrote: Helllo languae known php,jquery i m a starting in android developer please help me for which software requirement for android application in Thanks regards Astik patel -- You received this message because you are subscribed to the Google Groups Android Developers

Re: [android-developers] Building ndk liberary in android Failed

2011-11-28 Thread Deepak Kumar
have the library on your system. Thanks On Mon, Nov 28, 2011 at 11:39 AM, Deepak Kumar deepak.kumar...@gmail.comwrote: Hi All, I am trying to build a android project that uses ndk.And in Android.mk it loads the liberary that is writtern in C language(libdirectfb.c etc

[android-developers] Disable long press on soft Keyboard in android

2011-11-28 Thread Deepak Kumar
Hi All, If we long press on any of the keys on soft-keyboard, we get other language characters options.But I want only English or particular set of languages.So how to do it? Or how to disable long press on soft Keyboard? Thanks Regards, DEEPAK KUMAR -- You received

Re: [android-developers] Disable long press on soft Keyboard in android

2011-11-28 Thread Deepak Kumar
On Mon, Nov 28, 2011 at 4:03 PM, Raghav Sood raghavs...@androidactivist.org wrote: You cannot control the soft keyboard as it is not a part of your application. If you want an English only keyboard, write your own and bundle it with your app. On Mon, Nov 28, 2011 at 3:48 PM, Deepak Kumar

Re: [android-developers] Disable long press on soft Keyboard in android

2011-11-28 Thread Deepak Kumar
Can I disable long press atleast? Thanks, On Mon, Nov 28, 2011 at 4:13 PM, Deepak Kumar deepak.kumar...@gmail.comwrote: On Mon, Nov 28, 2011 at 4:03 PM, Raghav Sood raghavs...@androidactivist.org wrote: You cannot control the soft keyboard as it is not a part of your application

Re: [android-developers] Disable long press on soft Keyboard in android

2011-11-28 Thread Deepak Kumar
Hi, Is it possible without creating my own keyboard and disable long press on soft keyboard whichever currently in use? Or atleast can we disable for default soft keyboard that we get from google NOT third party soft keyboard app? Thanks, DEEPAK KUMAR On Mon, Nov 28, 2011 at 7:03 PM, Jim

Re: [android-developers] Re: Disable long press on soft Keyboard in android

2011-11-28 Thread Deepak Kumar
Filter in the input text means?Actually once I will long press on any of the key present on softKeyboard it will popup options and upon selection ,it will be displayed in Edittext. Thanks, DEEPAK KUMAR On Mon, Nov 28, 2011 at 8:26 PM, gil eichenbaum gileichenb...@gmail.comwrote

[android-developers] Building ndk liberary in android Failed

2011-11-27 Thread Deepak Kumar
/JointSpace/DirectFB141_2k11R3/DirectFB_Voodoo/lib/libjslibclient.o \ . . Thanks Regards, DEEPAK KUMAR, -- You received this message because you are subscribed to the Google Groups Android Developers

[android-developers] vedio editing software

2011-11-25 Thread deepak gusain
Dear All Friends, I need a video editor software which edit dvd file also .. -- Regards Deepak Gusain RHCSA, MCITP, CCNA M.no:- 9417248523 -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email

[android-developers] Launch SoftKeyboard without view in Android

2011-11-23 Thread Deepak Kumar
it is possible or not? Thanks Regards, DEEPAK KUMAR -- 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

Re: [android-developers] Launch SoftKeyboard without view in Android

2011-11-23 Thread Deepak Kumar
Yeah, that is possible. But I want to know how to launch soft Keyboard programmatically if there is no edittext or textview in layout?. Please reply anyone knows about this? On Wed, Nov 23, 2011 at 7:28 PM, anup Jaipurkar androida...@gmail.comwrote: Hi Deepak, Not much

[android-developers] Suse Linux Enterprise Server 11 sp 1

2011-11-07 Thread deepak gusain
Dear Friends, I need help about Suse Linux Enterprise Server 11 sp 1 documents.exp:- installation,troubleshooting,server configuration files setup,RAID, LVM and many more -- Regards Deepak Gusain RHCSA, MCITP, CCNA M.no:- 9417248523 -- You received this message because you are subscribed

[android-developers] Re: Android Alarm application

2011-09-26 Thread Deepak
Where can I find android stock alarm clock source 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@googlegroups.com To unsubscribe from this group, send email to

[android-developers] Change UI Layout for different devices

2011-09-05 Thread deepak
How can i change the layout of my application to suit all the different screen sizes? My application looks good in Samsung Galaxy S but when i see it on Sony Ericsson Xperia mini many of the texts and buttons are missing. Any help on how to make it consistent over all the devices? -- You

[android-developers] Webview with flash video in Android

2011-09-02 Thread deepak
I am calling a webview which contains a flash video and its playing without issues on Android 2.2 onwards. Its not playing in Android 2.1. Wanted to know whether it will play in Android 2.1 Update ? -- You received this message because you are subscribed to the Google Groups Android Developers

[android-developers] Live Stream To Android 2.1 from camera streaming over RTSP in h.263 format

2011-08-04 Thread deepak
I am looking to create a streaming solution to stream live video from IP Cameras which streams over RTSP in H.263 Format to android phones running on 2.1. From my understanding Android supports RTSP in H.263 Format. So i think i need to find a solution to route these streams to the android

[android-developers] Need Help

2011-08-04 Thread Deepak Sharma
I want to make an app in which i have to play a background song while user is on a call with someone and this song should be heard to both user and the caller . -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send

[android-developers] Live stream to Android from ipcamera over RTSP

2011-08-03 Thread deepak
Hi, I am creating an application for live streaming to Android.I have an ipcamera which streams over RTP/RTSP in H.263 format. How can i live stream from this camera to my applications MediaPlayer. Anyone having any ideas on this. I am new to live streaming.Please help. -- You received this

[android-developers] Re: Live stream to Android from ipcamera over RTSP

2011-08-03 Thread deepak
I couldn't find LaunchRTSP in the Android Market. Can you help me with where i can get it and how to use it? On Aug 3, 4:53 pm, lbendlin l...@bendlin.us wrote: Have a look at LaunchRTSP in the Android Market. -- You received this message because you are subscribed to the Google Groups Android

[android-developers] Live Streaming to Android 2.1

2011-08-02 Thread deepak
I am creating an application which does live streaming to android devices using red5. I came to know that flash is supported only from 2.2 onwards.I need to stream it to 2.1 also. So anyone knows how i can do live streaming to devices having android 2.1 ? This is really important for me. Please

[android-developers] Re: Live Streaming to Android 2.1

2011-08-02 Thread deepak
... Check the codecs supported by Red5 and codecs supported by Android Media Player and try to find a match (I can tell you that there are 2 matches). Daniel On 2 August 2011 10:44, deepak emailmedee...@gmail.com wrote: I am creating an application which does live streaming to android devices

[android-developers] Re: Live Streaming to Android 2.1

2011-08-02 Thread deepak
Can you help me with this? How can i use this?This is also using RTMP right?? On Aug 2, 3:38 pm, Daniel Drozdzewski daniel.drozdzew...@gmail.com wrote: On 2 August 2011 11:30, deepak emailmedee...@gmail.com wrote: Ok red5 supports codecs supported by android media player.But red5 uses RTMP

[android-developers] Re: Live Streaming to Android 2.1

2011-08-02 Thread deepak
Thanks Daniel. I will try it out. On Aug 2, 4:18 pm, Daniel Drozdzewski daniel.drozdzew...@gmail.com wrote: On 2 August 2011 12:09, deepak emailmedee...@gmail.com wrote: Can you help me with this? How can i use this?This is also using RTMP right?? You are on your own journey of discovery

Re: [android-developers]Proximity Alerts in LocationManager not working as expected.

2011-07-31 Thread deepak subramanian
a broadcast receiver. The closest that anyone got seems to be in the below thread. I used the same pattern as mentioned there but its not working now. http://groups.google.com/group/android-developers/browse_thread/thread/e61ec1e8d88ea94d/8bdcec373c45f5b4 Regards, Deepak On Thu, Jul 28, 2011

[android-developers]Proximity Alerts in LocationManager not working as expected.

2011-07-28 Thread deepak subramanian
with the following code. I have searched for some time but there is no good answer to this question anywhere on the web. Thanks and Regards, Deepak -- 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

[android-developers] Re: Proximity Alerts in LocationManager not working as expected.

2011-07-28 Thread deepak subramanian
on how to proceed. I wont send more on the same stuff. On Jul 28, 12:53 am, Francisco Dalla Rosa soares soa...@argo.bz wrote: how many times do you intend to post the same question? 2011/7/28 deepak subramanian deepak.s...@gmail.com Hi everyone, I have an application which needs to call

[android-developers]Proximity Alerts not working as expected

2011-07-27 Thread deepak subramanian
with the following code. I have searched for some time but there is no good answer to this question anywhere on the web. Thanks and Regards, Deepak -- 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

[android-developers] information about android softare

2011-07-26 Thread deepak gusain
Dear all android-developers, I want to know or information about android software. android software is a mobile software or now its possible to install in pc. so please give me details about this software thanks -- Regards Deepak Gusain RHCSA - MCITP M.no:- 9417248523 -- You received

Re: [android-developers] Re: information about android softare

2011-07-26 Thread deepak gusain
-- Regards Deepak Gusain RHCSA - MCITP M.no:- 9417248523 -- 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

[android-developers]Proximity Alerts not working as expected

2011-07-25 Thread deepak subramanian
with the following code. I have searched for some time but there is no good answer to this question anywhere on the web. Thanks and Regards, Deepak -- 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

[android-developers] Proximity Alerts

2011-07-25 Thread deepak subramanian
with the following code. I have searched for some time but there is no good answer to this question anywhere on the web. Thanks and Regards, Deepak -- 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: [android-developers] android service

2011-07-15 Thread Deepak Yadav
no On Fri, Jul 15, 2011 at 1:01 PM, yanamala siddaiah siddaiahforj...@gmail.com wrote: If service stopped by user or any other situation . I want to start the service again . or user dont want stop the service delete the option to user to stop the service for our app. is there any flags

[android-developers] Live Streaming in Android

2011-07-08 Thread deepak
Hi, I am developing an application where i need to live stream from my Ip camera to the android phone. Any help on how i can accomplish this??? -- 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] HttpURLConnectionImpl$LocalCloseInputStream with HttpsURLConnection

2011-04-06 Thread Deepak Kumar
where actually the problem and how to resolve it? Thanks, DEEPAK -- 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] Small Size Activity Layout as compare to Original Device size

2011-03-25 Thread Deepak Kumar
Hi All, I am creating one login screen that should have to appear at the center of the screen(smaller in size as compared to actual device size * eg*:150*150 for dev size 320*480) .It will look something like alert dialog that have options for username textview passwd textview 2

Re: [android-developers] Small Size Activity Layout as compare to Original Device size

2011-03-25 Thread Deepak Kumar
. Transparent is set in my colours.xml file as - color name=transparent#/color Then in your manifest file set the theme for your activity to @style/ModifiedDialog Regards, Cliff Davies On Fri, Mar 25, 2011 at 8:28 AM, Deepak Kumar deepak.kumar...@gmail.com wrote: Hi All

[android-developers] android:password property is not working for Edittext used in AlertDialog

2011-03-25 Thread Deepak Kumar
Hi All, I am setting android:password=*true* property for Edittext that I have used in Alert dialog for login screen but its not working. i.e it will not show the typed characters in edittext password in dot(*.*) format. Yeah this property is working fine for edittext used in

Re: [android-developers] Map API Key is not working generated through signup Certificate

2011-03-09 Thread Deepak Kumar
but thats not working. Or *can I release the app that uses Debug certificate generated Map API Key?If users will download it whether it will work fine or not*? On Wed, Mar 9, 2011 at 12:05 PM, Deepak Kumar deepak.kumar...@gmail.comwrote: Yeah I did that, I have signed

[android-developers] Map API Key is not working generated through signup Certificate

2011-03-08 Thread Deepak Kumar
Hi All, I have generated the Map API key from MD5 fingureprint of signing certificate.But its not working.I have generated Map API Key from debug certificate that works fine. Even I have properly created keystore by exporting the application and then used those

Re: [android-developers] Map API Key is not working generated through signup Certificate

2011-03-08 Thread Deepak Kumar
Yeah I did that, I have signed application in eclipse as follows:- Android Tools-Export Signed Application Package-Then I followed all steps After that it generated the .apk folder that i think is of no use because still I have to generate the key and then replace in xml for

[android-developers] setOnItemClickListener not called on pressing of view for particular item in a custom List

2011-03-07 Thread Deepak Kumar
Hi All, I am using custom list with each item in the list have RelativeLayout with 1 textview and 1 Button.Then at run time I am not getting response in OnItemClickListener upon selection on particular item.As per follwing code(I am using BaseAdapter for item in a custom list):-

[android-developers] Explicitly showing soft keyboard won't work most of the times

2011-02-28 Thread Deepak Kumar
Hi All, On loading of PopupWindow I am trying to display soft keyboard through code.Layout of Popup contains one of the edit text.I am using following code but its not working:- imm = (InputMethodManager)context.getSystemService(Context.INPUT_METHOD_SERVICE);

[android-developers] when PopUpWindow finish animation

2011-02-28 Thread Deepak Kumar
Hi All, I am using PopUpWindow which will shown with animation.After creating object then I am calling below method as follows to show the popup after 1s from bottom to top in animated way:- CODE::- pop.setLocationAndUpdate(); :

[android-developers] MapActivity ClassNotFound Error

2011-02-22 Thread Deepak Kumar
Hi All, I am using a class that extends MapActivity.I got following *NoClassDefFoundError *error. Uncaught handler: thread main exiting due to uncaught exception E/AndroidRuntime( 4538): *java.lang.NoClassDefFoundError*: com.permeative.cityessentials.MapPrac

Re: [android-developers] MapActivity ClassNotFound Error

2011-02-22 Thread Deepak Kumar
Yeah, I have added it to manifest. On Tue, Feb 22, 2011 at 10:01 PM, TreKing treking...@gmail.com wrote: On Tue, Feb 22, 2011 at 5:22 AM, Deepak Kumar deepak.kumar...@gmail.comwrote: But when I have created different project where I am using these class MapPrac extends

Re: [android-developers] Re: MapActivity ClassNotFound Error

2011-02-22 Thread Deepak Kumar
tag in the Application Manifest file. Here is a link explaining maps http://code.google.com/android/add-ons/google-apis/maps-overview.html On Feb 22, 6:22 am, Deepak Kumar deepak.kumar...@gmail.com wrote: Hi All, I am using a class that extends MapActivity.I got

[android-developers] Dynamically adding view in layout xml in android

2011-02-15 Thread Deepak Kumar
Hi All, I have created a xml layout which includes ImageButtons in row,col format.So,layout having some initial number of views.Now,I want to add extra views at run time i.e through code.Is it possible? How to do it? Thanks, -- You received this message because you are

Re: [android-developers] Re: Dynamically adding view in layout xml in android

2011-02-15 Thread Deepak Kumar
with in layout properly.Is there any alternate way or related method is available? On Tue, Feb 15, 2011 at 4:09 PM, CrazzyAndroidians nithin@gmail.comwrote: yes, you can do it, using LayoutInflater and addView() Androidian On Feb 15, 3:13 pm, Deepak Kumar deepak.kumar...@gmail.com wrote

[android-developers] Density independent values through code for views

2011-02-15 Thread Deepak Kumar
Hi All, I have added views to layout in xml through code(i.e dynamically).And given properties for button such as topMargin,leftMargin etc.Yeah it will appear properly in one device.Because I gave values as per adjustment to the current device(hdpi854) but if I will run the same

Re: [android-developers] Density independent values through code for views

2011-02-15 Thread Deepak Kumar
().density; *return* (*int*)(dips * *DIP_SCALE* + 0.5f); } } and using that in your code... On 15 Feb 2011, at 14:13, Pepijn Van Eeckhoudt wrote: On 15/02/2011 15:03, Deepak Kumar wrote: One of the solution can be multiplying these values with ratio (according to device

[android-developers] answering machine in android

2011-02-11 Thread deepak kumar
Dear Sir/Madam, We are trying to develop an application based on answering machine, in which the application has to receive the call during certain period, has to answer the call by playing a pre- recorded message and has to record the message of the caller. The application has to

[android-developers] PopUpWindow Gap on left and right side

2011-02-03 Thread Deepak Tiwari
Hello All, I am using custom PopupWindow(height =420,width =320 as per device size) and it will popup from bottom of screen(with animation).Yeah it will appear properly.But the problem is - it always gives a 3-5 px(approx.) gap at the left and right side of the popupWindow.

[android-developers] Bouncycastle API Usage

2011-01-14 Thread Deepak
i see them on android developer website. Has anybody ever used BC apis? Is so, I would appreciate you sharing this info. Thanks. Deepak -- 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

  1   2   >