[android-developers] Download file in webview from url

2013-05-10 Thread Rahul Kaushik
Hi, How to download file(image or pdf or docs..) in webview from url Thanks RK -- -- 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] launch an existing app in Fragment

2013-05-10 Thread surabhi jain
Hi All, I want to launch any existing app of device inside a fragment. Can anyone please help me how can I do 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@googlegroups.com

Re: [android-developers] Re: Google Map not showing

2013-05-10 Thread surabhi jain
Hey my problem has been solved, actually i have created wrong api key Thanks lbendlin On Tue, May 7, 2013 at 9:32 PM, lbendlin l...@bendlin.us wrote: 39 characters is correct. However you do NOT want to post your API key in public. You really will want to read the documentation.

Re: [android-developers] Re: App not showing in Play Store after nearly 12 hours!

2013-05-10 Thread reaktor24
lol. Not exactly. Maybe I will change the icon soon. Just needed something quick as a placeholder image. Sidenote: Did you get permission to use that Tigger image? Because if not, you're just asking for your app to get yanked and your account possibly suspended.

[android-developers]

2013-05-10 Thread asma rezgui
Good morning , i want to get back data from balloon overlay displayed when i click on one point on the mapview . I didn't know which is the good method to do that , i have tried with autolink but no results !! can someone help me , thanks -- -- You received this message because you are

[android-developers] Share Dialog

2013-05-10 Thread Jefferson Delgado Pérez
Hi! I've been looking for a while and I have not managed to figure out how to make a protected Dialog onCreateDialog (int id), which can be accessed from several activities by id sent by ShowDialog (id) With public void Dialog onCreateDialog (int id) enough I guess, but the problem is, that

Re: [android-developers] ORM library

2013-05-10 Thread Ryan Bateman
Your points are valid and to similar to my own concerns. While I doubt that ORM would save the day, it would be nice to have a solution that would reduce the large amount of boilerplate that comes along with maintaining table structures. I'll take a look at ORMLite - thanks for your thoughts.

[android-developers] video error messages?

2013-05-10 Thread bob
Is there any way to get good information concerning an error when a VideoView won't play a video file? It seems like the OnErrorListener doesn't give much info when there's an error. It just passes this in: public static final int MEDIA_ERROR_UNKNOWN = 1; Thanks. -- -- You received

[android-developers] Re: Download file in webview from url

2013-05-10 Thread bob
I think the only one of those you can definitely load in a WebView is an image. That would be done like so: * @Override* * protected void onCreate(Bundle savedInstanceState) {* * super.onCreate(savedInstanceState);* * WebView wv = new WebView(this);* * setContentView(wv);* *

Re: [android-developers] launch an existing app in Fragment

2013-05-10 Thread TreKing
On Fri, May 10, 2013 at 4:15 AM, surabhi jain surabhi17.j...@gmail.comwrote: I want to launch any existing app of device inside a fragment. Can anyone please help me how can I do this. You can't do that.

Re: [android-developers]

2013-05-10 Thread TreKing
On Fri, May 10, 2013 at 4:28 AM, asma rezgui asmarezgu...@gmail.com wrote: Good morning , i want to get back data from balloon overlay displayed when i click on one point on the mapview . I didn't know which is the good method to do that , i have tried with autolink but no results !! can

Re: [android-developers] Share Dialog

2013-05-10 Thread TreKing
On Fri, May 10, 2013 at 4:59 AM, Jefferson Delgado Pérez jjdel...@gmail.com wrote: I've been looking for a while and I have not managed to figure out how to make a protected Dialog onCreateDialog (int id), which can be accessed from several activities by id sent by ShowDialog (id) With

Re: [android-developers] Couldn't Create Directory for shared preferences

2013-05-10 Thread naresh pedagani
Hi ,i never face ,i used the following code.its working fine. *to store the data into shared preferences* SharedPreferences.Editor editor = getPreferences(MODE_PRIVATE).edit(); editor.putString(text,hello); editor.commit(); * to retrive the data from shared preferences* SharedPreferences

[android-developers] Re: Who's going to AnDevCon V? Discount available. . .

2013-05-10 Thread Nathan
A reminder that May 10th is today. It is a good day to register for AnDevCon if you haven't already. http://www.andevcon.com/AnDevCon_Boston/conferencepricing.aspx Use the discount code 'MELLOR' to save an extra $200. Nathan On Thursday, May 2, 2013 1:45:55 PM UTC-7, Nathan wrote: Who is

[android-developers] Re: Who's going to AnDevCon V? Discount available. . .

2013-05-10 Thread Streets Of Boston
I'll be there. How can i not be there, since I live in Boston. :) On Thursday, May 2, 2013 4:45:55 PM UTC-4, Nathan wrote: Who is going to AnDevCON in Boston this month? I will be there speaking at two sessions about Driving App Success. Much smarter people than me also are speaking there.

[android-developers] Intent confusion

2013-05-10 Thread bob
I'm trying to understand Intents better. So I have this code to show a PDF: *String file_loc = /mnt/sdcard/mypdf.pdf;* *Uri dest = Uri.fromFile(new File(file_loc));* * * *Intent i = new Intent();* *i.setPackage(com.adobe.reader);* *i.setDataAndType(dest, application/pdf);* *startActivity(i);* I

[android-developers] Re: Couldn't Create Directory for shared preferences

2013-05-10 Thread Streets Of Boston
Usually, this is a bug in the OS. Uninstalling and re-installing your app can make it go away. Google *android Could n't create Directory for shared preferences* and you'll find many links/answers/comments on your problem. On Friday, May 10, 2013 12:34:42 AM UTC-4, rahul wrote: Hi

[android-developers] Re: Who's going to AnDevCon V? Discount available. . .

2013-05-10 Thread Nathan
On Friday, May 10, 2013 11:14:40 AM UTC-7, Streets Of Boston wrote: I'll be there. How can i not be there, since I live in Boston. :) I'll try not to tread on you too heavily, Streets of Boston. You may have to mutate into human form for me to find you. Nathan -- -- You received

[android-developers] Re: Who's going to AnDevCon V? Discount available. . .

2013-05-10 Thread Streets Of Boston
I'll be the 6'7 tall Dutch guy in the audience. Usuallly, there are not too many of them. :) https://plus.google.com/107648953926480501831/ https://www.facebook.com/streetsofboston On Friday, May 10, 2013 2:23:17 PM UTC-4, Nathan wrote: On Friday, May 10, 2013 11:14:40 AM UTC-7, Streets Of

[android-developers] Re: Intent confusion

2013-05-10 Thread Streets Of Boston
I guess the *Send For Signature *Activity is part of the Adobe Reader package/app *com.adobe.reader* as well. On Friday, May 10, 2013 2:17:05 PM UTC-4, bob wrote: I'm trying to understand Intents better. So I have this code to show a PDF: *String file_loc = /mnt/sdcard/mypdf.pdf;* *Uri dest

[android-developers] Re: Intent confusion

2013-05-10 Thread bob
Hmmm… I guess so. It just works if I use a different PDF reader (Foxit): *i.setPackage(com.foxit.mobile.pdf.lite);* Thanks. On Friday, May 10, 2013 1:44:12 PM UTC-5, Streets Of Boston wrote: I guess the *Send For Signature *Activity is part of the Adobe Reader package/app

[android-developers] Re: Share Dialog

2013-05-10 Thread shailesh
You could not able to call onCreateDialog (int id) from out side of the activity . The dialog have reference of activity context so it is not possible to make on onCreateDialog method and used by different activities. Thanks -- -- You received this message because you are subscribed to the

[android-developers] Re: drawing over everything

2013-05-10 Thread bob
I'm thinking maybe I can do this by using whatever technique the *Toast*uses. I noticed that toasts do show up over the keyboard and probably everything else. Anyone know where to look to see the actual code that puts the *Toast*above everything else? I didn't see it in the most obvious

Re: [android-developers] Re: drawing over everything

2013-05-10 Thread Michael Banzon
This should most likely be the way to go. I don't have any real lead that can help you along the way - but I have noticed the new chat heads in the facebook app also appear on top of everything (including keyboard). The implementation of toasts might be a bit closer to the OS but knowing that an

[android-developers]

2013-05-10 Thread Jayavelu Viswanathan
file manager app install and tell your comments https://play.google.com/store/apps/details?id=com.manager.folder.jayfeature=more_from_developer#?t=W251bGwsMSwxLDEwMiwiY29tLm1hbmFnZXIuZm9sZGVyLmpheSJd -- -- You received this message because you are subscribed to the Google Groups Android

[android-developers]

2013-05-10 Thread Jayavelu Viswanathan
file manager app install and tell your comments https://play.google.com/store/apps/details?id=com.manager.folder.jayfeature=more_from_developer#?t=W251bGwsMSwxLDEwMiwiY29tLm1hbmFnZXIuZm9sZGVyLmpheSJd -- -- You received this message because you are subscribed to the Google Groups Android

[android-developers]

2013-05-10 Thread Jayavelu Viswanathan
file manager app install and tell your comments https://play.google.com/store/apps/details?id=com.manager.folder.jayfeature=more_from_developer#?t=W251bGwsMSwxLDEwMiwiY29tLm1hbmFnZXIuZm9sZGVyLmpheSJd -- -- You received this message because you are subscribed to the Google Groups Android

[android-developers]

2013-05-10 Thread Jayavelu Viswanathan
file manager app install and tell your comments https://play.google.com/store/apps/details?id=com.manager.folder.jayfeature=more_from_developer#?t=W251bGwsMSwxLDEwMiwiY29tLm1hbmFnZXIuZm9sZGVyLmpheSJd -- -- You received this message because you are subscribed to the Google Groups Android

[android-developers]

2013-05-10 Thread Jayavelu Viswanathan
file manager app install and tell your comments https://play.google.com/store/apps/details?id=com.manager.folder.jayfeature=more_from_developer#?t=W251bGwsMSwxLDEwMiwiY29tLm1hbmFnZXIuZm9sZGVyLmpheSJd -- -- You received this message because you are subscribed to the Google Groups Android

[android-developers] myfiles

2013-05-10 Thread Jayavelu Viswanathan
file manager app install and tell your comments https://play.google.com/store/apps/details?id=com.manager.folder.jayfeature=more_from_developer#?t=W251bGwsMSwxLDEwMiwiY29tLm1hbmFnZXIuZm9sZGVyLmpheSJd -- -- You received this message because you are subscribed to the Google Groups Android

[android-developers]

2013-05-10 Thread Jayavelu Viswanathan
file manager app install and tell your comments https://play.google.com/store/apps/details?id=com.manager.folder.jayfeature=more_from_developer#?t=W251bGwsMSwxLDEwMiwiY29tLm1hbmFnZXIuZm9sZGVyLmpheSJd -- -- You received this message because you are subscribed to the Google Groups Android

[android-developers]

2013-05-10 Thread Jayavelu Viswanathan
file manager app install and tell your comments https://play.google.com/store/apps/details?id=com.manager.folder.jayfeature=more_from_developer#?t=W251bGwsMSwxLDEwMiwiY29tLm1hbmFnZXIuZm9sZGVyLmpheSJd -- -- You received this message because you are subscribed to the Google Groups Android