[android-developers] android proguard is not working for the that is activated by the reflection?

2013-09-25 Thread 12169
Hi , I want to get the application size in the android and i did this using reflection method and it works fine .but when i release the built with enabling the proguard then it is not working.any suggestion... -- You received this message because you are subscribed to the Google Groups

[android-developers] Re: Honeycomb / Fragments: can't remove a fragment added in XML layout

2013-09-25 Thread 12169
if use want to remove the fragments then the best way to add it dynamically. just create the fragment view in a seperate .xml file and add it to your manager using fragmentmanager that is associated with your activity. On Wednesday, March 9, 2011 3:34:31 PM UTC+5:30, clemp6r wrote: Hi, I

[android-developers] Re: Bluetooth Low Energy Encrypted Characteristic Read Write

2013-09-25 Thread gjs
Hi, So far I've only used BLE successfully with devices that don't need to use encryption, however the docs seem to infer that BluetoothGattCharacteristic requires setWriteType (int writeType) where writeType is WRITE_TYPE_SIGNED - Write characteristic including authentication signature -

Re: [android-developers] horizontal manager alignment of its child view?

2013-09-25 Thread goran gg
http://stackoverflow.com/questions/6992804/how-to-right-align-widget-in-horizontal-linear-layout-android 2013/9/24 ashish ashish.a...@gmail.com Hi, these fields are available in relative layout...but i am using horizontal layout... On Tuesday, September 24, 2013 2:25:56 AM UTC-7, goran gg

[android-developers] Calendar API has an awkward behaviour

2013-09-25 Thread drjunior
I have this piece of code that creates events with repetition (RRULE) in the main user's calendar: Calendar beginTime = Calendar.getInstance(); #increment one day to the actual time (just for precaution) beginTime.add(Calendar.HOUR, 1);

[android-developers] Re: in-app billing disconnects from activity on configuration change

2013-09-25 Thread Ian Ni-Lewis
It seems like the main problem is that you're initiating IAB from an activity, not a service. Activity lifetime is governed primarily by user actions, so an activity is rarely the right container for something that needs to respond to events that aren't initiated by the user. On Tuesday,

[android-developers] Re: in-app billing disconnects from activity on configuration change

2013-09-25 Thread Ted Hopp
But the event is initiated by the user---when the user starts an in-app purchase. Also, the IAB flow involves user interaction to complete the purchase. The sample apphttp://developer.android.com/training/in-app-billing/preparing-iab-app.html#GetSamplethat Google provides initiates the

[android-developers] New library to serialize/convert primitives to byte arrays and back again...

2013-09-25 Thread Richard Schilling
Just FYI, I've announced a pre-release of a library that is built for Android which will convert Java primitives (and primitive arrays) to byte arrays and back again: http://rschilling.wordpress.com/2013/09/26/pre-release-announcement-pend-oreille/ License: GPL v2. I wrote it because