[android-developers] create photo gallary

2014-08-09 Thread Save My Life!
dear sir, for my application, I wanted to create photo gallary. in which i can add photo (from content provider) well as delete photo. how to 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 a

Re: [android-developers] DefaultHttpClient / AndroidHttpClient - Multiple Cookie Headers

2014-08-09 Thread Gaurav Vaish
But that makes final APK fat... I guess if there's no other option, I'll better write a thin hack in the app. - Gaurav www.m10v.com On Saturday, August 9, 2014, Massimo Messore wrote: > I had a different issue with the HttpClient lib included into the Android > sdk. > > I solved using an exter

Re: [android-developers] DefaultHttpClient / AndroidHttpClient - Multiple Cookie Headers

2014-08-09 Thread Massimo Messore
I had a different issue with the HttpClient lib included into the Android sdk. I solved using an external and newer HttpClient library in my project. Maybe it worth a try: http://code.google.com/p/httpclientandroidlib/ Regards Massimo Il 10/ago/2014 07:23 "Gaurav Vaish" ha scritto: > There is

Re: [android-developers] DefaultHttpClient / AndroidHttpClient - Multiple Cookie Headers

2014-08-09 Thread Gaurav Vaish
There is no other way to add cookie, isn't it? Or do you mean it is my responsibility to format / combine all cookies? What's the purpose of CookieSpecPNames.SINGLE_COOKIE_HEADER parameter then? How do I use that? - Gaurav On Saturday, 9 August 2014 12:38:00 UTC-7, mbanzon wrote: > > You don't

Re: [android-developers] Shape with a pattern fill

2014-08-09 Thread Peter Teoh
http://stackoverflow.com/questions/1700099/android-how-to-create-a-background-from-pattern On Tue, Jul 29, 2014 at 5:47 AM, dashman wrote: > Is it possible to create a shape with a pattern fill - instead of a solid > color. > > > -- > You received this message because you are subscribed to the

[android-developers] Exception when starting activity: android.os.TransactionTooLargeException

2014-08-09 Thread luca
Hi, i launched my app and it crashed with the following exception stack trace: E/JavaBinder(314): !!! FAILED BINDER TRANSACTION !!! W/ActivityManager(314): Exception when starting activity SplashScreen W/ActivityManager(314): android.os.TransactionTooLargeException W/ActivityManager(314): at and

Re: [android-developers] DefaultHttpClient / AndroidHttpClient - Multiple Cookie Headers

2014-08-09 Thread Michael Banzon
You don't set a cookie - you set a header. Twice. It's the expected result... On Sat, Aug 9, 2014 at 9:08 PM, Gaurav Vaish wrote: > Hi, > > I noticed that DefaultHttpClient as well as AndroidHttpClient do not work > nicely if multiple "Cookie" or "Cookie2" headers are set in a request. > > I t

[android-developers] Re: DefaultHttpClient / AndroidHttpClient - Multiple Cookie Headers

2014-08-09 Thread Jonathan S
I see you add two Cookie Headers. On Saturday, August 9, 2014 3:08:32 PM UTC-4, Gaurav Vaish wrote: > > Hi, > > I noticed that DefaultHttpClient as well as AndroidHttpClient do not work > nicely if multiple "Cookie" or "Cookie2" headers are set in a request. > > I tried with a simple test code: >

[android-developers] DefaultHttpClient / AndroidHttpClient - Multiple Cookie Headers

2014-08-09 Thread Gaurav Vaish
Hi, I noticed that DefaultHttpClient as well as AndroidHttpClient do not work nicely if multiple "Cookie" or "Cookie2" headers are set in a request. I tried with a simple test code: String url = "http://www.myserver.com";; DefaultHttpClient dhc = new DefaultHttpClient();

[android-developers] Re: Geofence not working over 3G/WiFi in Android 4.4+(KitKat) versions

2014-08-09 Thread Pent
> There are some serious problems with the Google Play geofencing api. > > Most notably - not detecting fence transitions. > > Wrote my own. > Havn't used geofencing, but it was the same with location manager area trigger back in 2009 coincidentally (want reliability, write own). Pent -- You

[android-developers] Re: Geofence not working over 3G/WiFi in Android 4.4+(KitKat) versions

2014-08-09 Thread dashman
There are some serious problems with the Google Play geofencing api. Most notably - not detecting fence transitions. Wrote my own. On Tuesday, July 29, 2014 2:10:08 AM UTC-4, Abhishek Kumar Gupta wrote: > > In Android 4.4+ versions, I am not able to add/remove geofence over > 3G/WiFi. Every t