[android-developers] Re: Multiple dynamic repeating alarm in application.

2011-09-21 Thread jagtap.jj
It got resolved. Using pending intent with unique request code. On Sep 21, 12:20 pm, "jagtap.jj" wrote: > Hi, > >   I have Notes like application, for every note there is one repeating > alarm, notes can grow to any number. for every note user will set > repeating alarm

[android-developers] Multiple dynamic repeating alarm in application.

2011-09-21 Thread jagtap.jj
Hi, I have Notes like application, for every note there is one repeating alarm, notes can grow to any number. for every note user will set repeating alarm. How to achieve this? Any suggestions? Thanks & Regards Jalandar Jagtap -- You received this message because you are subscribed to the G

[android-developers] Handling webview event using JavaScript.

2011-05-23 Thread jagtap.jj
Hi All, I need guide, I am developing application using Android WebView, But I want the click and touch event of WebView should be handled using JavaScript. How to achieve this. Thanks. -- You received this message because you are subscribed to the Google Groups "Android Developers" group.

[android-developers] Re: android play youtube

2010-02-21 Thread jagtap.jj
Is there example to upload video from android to YouTube? How we can achieve in Android to upload a video on YouTube? On Feb 12, 8:23 am, David Toledo wrote: > I used this url for  view video youtube in android. It is OK. > > startActivity(new Intent(Intent.ACTION_VIEW, > Uri.parse("http://www.y

[android-developers] Camcorder not woking for video recording sdk1.6r1

2009-12-07 Thread jagtap.jj
Hello everybody I tried the Camcorder(in built Android app) for both avds default and custom(with camera) to record video, but the media recorder start fails. Is there any suggestion? Here is log cat: 12-07 14:09:49.477: ERROR/CameraService(554): mHardware->startRecording () failed with status -

[android-developers] Re: How to preserve old Db table, while adding new table columns for new version of app?

2009-11-16 Thread jagtap.jj
ldVersion < VERSION_WHEN_COLUMN_ADDED) >      db.execSQL("alter table " + TABLE_NAME + " add column " + > COLUMN_NAME + " " + COLUMN_TYPE + ";"); > > Cheers, > Steve > > On Nov 16, 8:17 am, "jagtap.jj" wrote: > > >

[android-developers] How to preserve old Db table, while adding new table columns for new version of app?

2009-11-16 Thread jagtap.jj
Hello everybody Is there way for Android or in SQLite to preserve old version Db table columns, while adding new table columns for new version. The new application version should not vanish all user data from old version. Any suggestions? -- You received this message because you are subscribed

[android-developers] Re: java.lang.StackOverflowError for sdk1_5r3

2009-09-17 Thread jagtap.jj
ayout->TableRow->Button and now its working fine. In Android, what Is max view hierarchy level normally can be allowable? Once again thanks for help. On Sep 17, 12:08 pm, Romain Guy wrote: > The problem is the number of parents you have. > > > > On Wed, Sep 16, 2009 at 11:52 PM

[android-developers] Re: java.lang.StackOverflowError for sdk1_5r3

2009-09-16 Thread jagtap.jj
ImageButtons), that Tab works fine. Why does the same list item gets work perfectly on sdk1.1r1 On Sep 17, 11:41 am, Romain Guy wrote: > You have (way) too many views. Remove a few. Your app will load > faster, layout faster, draw faster and won't crash. > > > > On Wed, Sep 16, 2009

[android-developers] java.lang.StackOverflowError for sdk1_5r3

2009-09-16 Thread jagtap.jj
Hello everybody Some serious error I am using custom listadapter for ListActivity, but half adapter is getting built and then throws "java.lang.StackOverflowError". When I ran the same code on sdk1_1r1 it works perfect. When do i try to run on sdk1_5r3, gives this error. Generally jav

[android-developers] Re: How do I Activate the camera application from my app?

2009-08-20 Thread jagtap.jj
Refer this Intent i = new Intent("android.media.action.IMAGE_CAPTURE"); try{ startActivityForResult(i, TAKEPICTURE_ACTIVITY); }catch(ActivityNotFoundException e){ Toast.makeText(this, "Application not available", Toast.LENGTH_SHORT).show();

[android-developers] Re: maps api and 1.5

2009-07-29 Thread jagtap.jj
Refer this http://www.anddev.org/viewtopic.php?p=24902#24902 On Jul 21, 10:12 pm, Spiral wrote: > Same here. > > On Jul 6, 8:45 pm, Georgy wrote: > > > Hello Brian, > > > I am having your same issue. Were you able to solve it? > > > thanks > > > On May 25, 8:48 am, "brian.schimmel" > > wrote:

[android-developers] Cursor for service component?

2009-06-12 Thread jagtap.jj
Hello everybody In application there is Service running in background, and appl having private database, When appl runs in back ground with service. I want to retrieve Cursor for query on appl database. For content provider having the solution, i.e. getting cursor for Service too [ Co

[android-developers] Re: Writing text on images in Android

2009-06-04 Thread jagtap.jj
Well here is my tut http://www.anddev.org/viewtopic.php?p=22718#22718 Thank you jagtap --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to android-develope

[android-developers] Showing travel path which will mach the real road on map.

2009-05-16 Thread jagtap.jj
In the application gps points(lat, lon) are collected while device is moving. I am showing them as travel path on map with overlays. " Now the problem is when showing the path between the two points which are at two road cross, it does not show path exactly on road, if the distance between two

[android-developers] Re: playing audio file using intent

2009-05-12 Thread jagtap.jj
the problem has been solved I just used "intent.setDataAndType(mUri, "audio/*");" instead of using separately " intent.setData(uri); intent.setType ("audio/*"); " --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "An

[android-developers] Re: playing audio file using intent

2009-05-11 Thread jagtap.jj
I want play audio file, which is on sdcard, with intent String path = Environment.getExternalStorageDirectory ().getAbsolutePath (); File audioFile = new File(path, "westron.mp3"); Intent intent = new Intent(Intent.ACTION_VIEW); Uri uri = Uri.fromFile(audioFile);

[android-developers] playing audio file using intent

2009-05-11 Thread jagtap.jj
I want play audio file, which is on sdcard, with intent String path = Environment.getExternalStorageDirectory().getAbsolutePath (); File audioFile = new File(path, "westron.mp3"); Intent intent = new Intent(Intent.ACTION_VIEW); Uri uri = Uri.fromFile(audioFile);

[android-developers] what is "android:maxEms" from TextView class?

2009-05-09 Thread jagtap.jj
what is this tag for "android:maxEms" from TextView class? I wanted to restrict edited text to only 2 characters, which tag is need for this? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Android Developers" grou

[android-developers] private media file clean up by media provider

2009-05-08 Thread jagtap.jj
hello the media provider cleans the media files, if files didn't get read since last two month. does it cleans(delete) the private application media file stored on sdcard, too if didn't get read from last two month? or Appl Private media file does not come under media file? plz guide for issue

[android-developers] Is it possible to have, horizontal "listview", scrolling horizontally?

2009-05-07 Thread jagtap.jj
Hello everybody Is it possible to have, horizontal "listview"? normally the listview scrolls vertically having horizontally rows . is reverse case possible, listview scrolling horizontally and having vertical rows. Thank you --~--~-~--~~~---~--~~ You received