Re: [android-developers] Re: Barcode Scanner app

2012-11-01 Thread dEEPESH PPM
Please reffer this link: http://sourceforge.net/projects/zbar/files/AndroidSDK/ Deepesh On Thu, Nov 1, 2012 at 12:50 PM, Karl Kristian Markman karlkristian.mark...@gmail.com wrote: You will find all you need here: http://code.google.com/p/zxing/ and here is integration explained

Re: [android-developers] Alert Dialog Box

2012-08-10 Thread dEEPESH PPM
Hi, On Fri, Aug 10, 2012 at 11:18 AM, Meena Rengarajan meenasoft...@gmail.comwrote: How to Enable Wifi automatically in Android 2.2 in an alert box ? If i click Yes button then it should be enable and if i click no then application must be closed. Can anyone tell me this how should i do ?

Re: [android-developers] Alert Dialog Box

2012-08-10 Thread dEEPESH PPM
Hi, Try this code; In yes button click WifiManager wifiManager = (WifiManager)this.context.getSystemService(Context.WIFI_SERVICE); wifiManager.setWifiEnabled(status); status =true or false Regards On Fri, Aug 10, 2012 at 11:18 AM, Meena Rengarajan meenasoft...@gmail.com wrote:

Re: [android-developers] Passing Object

2012-07-02 Thread dEEPESH PPM
// to retrieve object in second Activity getIntent().getSerializableExtra(key); On Sun, Jul 1, 2012 at 6:34 PM, mohammed Nuhail nuhail...@gmail.com wrote: i have tried this its not workin. i think that is use to pass the string between activity. On Fri, Jun 29, 2012 at 2:23 PM, dEEPESH PPM

Re: [android-developers] Passing Object

2012-06-29 Thread dEEPESH PPM
Use this, Intent i = new Intent(CurrentActivity.this, NextActivity.class); i.putExtra(key, object); intent.startActivity(i); On Tue, Jun 26, 2012 at 12:54 PM, mohammed Nuhail nuhail...@gmail.comwrote: How to pass the object from one activity to another ? -- You received this message because

Re: [android-developers]

2012-06-15 Thread dEEPESH PPM
Create two animation xmls in res/anim folder to start an activity. Then use this code.. @Override public boolean onKeyDown(int keyCode, KeyEvent event) { if (keyCode == KeyEvent.KEYCODE_BACK) { startActivity(new Intent(CurrentActivity.this,NextActivity.class));

Re: [android-developers] Printing PDF in Android

2012-06-08 Thread dEEPESH PPM
Android support Google Cloud print facility. please reffer the url https://developers.google.com/cloud-print/docs/android On Fri, Jun 8, 2012 at 3:55 PM, Mark Murphy mmur...@commonsware.com wrote: Android does not have any printing support at this time. On Fri, Jun 8, 2012 at 1:44 AM, RAJESH

Re: [android-developers] email pdf attachment 0kb !

2012-05-30 Thread dEEPESH PPM
Dear Jag, I have the same problem when send an attachment to the email. I solved this by saving the pdf file in the sd card. Regards Deepesh On Thu, May 31, 2012 at 1:15 AM, Jags jag...@gmail.com wrote: i have a pdf file in /data/data/mypkg/pdfs/myfile.pdf i am using this url debugged and

Re: [android-developers] Google Map API usage

2012-02-20 Thread dEEPESH PPM
Hi, Please refer the following links https://code.google.com/apis/console/#project:58720998082:access http://eagle.phys.utk.edu/guidry/android/mapOverlayDemo.html http://blog.pocketjourney.com/2008/03/19/tutorial-2-mapview-google-map-hit-testing-for-display-of-popup-windows/

Re: [android-developers] get a code

2012-02-20 Thread dEEPESH PPM
Hi, Use this code; final Intent emailIntent = new Intent( android.content.Intent.ACTION_SEND); emailIntent.setType(plain/text); startActivity(emailIntent); Deepesh On Sun, Feb 19, 2012 at 8:43 PM, Jim Graham spooky1...@gmail.com wrote: On Sun, Feb 19, 2012 at 06:55:34AM -0800,

Re: [android-developers] need help in twitter integration

2012-01-09 Thread dEEPESH PPM
Hi Naveen *,* * * *Please check your device clock and adjust with current time. I had the same issue in my app. I am solving this issue bu correcting the android device time.You can solve this issue* * * *Regards* * * *Deepesh C* On Mon, Jan 9, 2012 at 3:45 PM, chowdary nani

Re: [android-developers] need help in twitter integration

2012-01-09 Thread dEEPESH PPM
Hi Naveen, this may due to the mismatching of time stamp. As twitter OAuth request token service is related with current time you have to check your system clock . Regards Deepesh On Mon, Jan 9, 2012 at 4:19 PM, chowdary nani naveenneeli...@gmail.comwrote: Hi dEEPESH PPM , Thanks for help

Re: [android-developers] Re: I require Code for Cloud printer

2012-01-05 Thread dEEPESH PPM
Hi Doug, * * * * * * * Please refer the following links..* * 1.*http://code.google.com/apis/cloudprint/docs/overview.html 2.http ://www.google.com/cloudprint/learn/http://www.google.com/cloudprint/learn/ * * *Thanks and Regards* * * *Deepesh* On Thu, Jan 5, 2012 at