Re: [android-developers] lifecycle through onConfigurationChanged()

2013-10-09 Thread Piren
lol On Tuesday, October 8, 2013 9:02:25 PM UTC+3, TreKing wrote: Thank you very much for your corporations. You've taken our corporations!?!?!? - TreKing

[android-developers] When running under Android 4.3 in a user profiles (not restricted), my app goes nuts!

2013-10-09 Thread bjv
I have an application that works fine from pre-gingerbread through 4.2. In fact, it also works fine on 4.3 as well as long as it is run in the system user's context (the default user). If I create a user profile (not a restricted profile) and install my app in that user context, my app fails

[android-developers] Upgrading Apk

2013-10-09 Thread Rahul Kaushik
Hello , i have lost my old keystore signing file for the older version of apk,when i try to upload new apk with new keystore signing file i get the below error: You uploaded an APK that is signed with a different certificate to your previous APKs. You must use the same certificate. Your existing

Re: [android-developers] Upgrading Apk

2013-10-09 Thread Isuru Madusanka
You must need old keystore file, unless u won't able to upload, because android play market need you to sign with same key file. On Oct 9, 2013 10:36 AM, Rahul Kaushik rahulkaushi...@gmail.com wrote: Hello , i have lost my old keystore signing file for the older version of apk,when i try to

[android-developers] Regarding distance measuring api

2013-10-09 Thread sourabh sahu
Is there any API provided by Google to measure the distance between two point radially and through physical routes. Thanks, Sourabh -- 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] Show Glyph outside Unicode Range ? label:Android

2013-10-09 Thread Ingo Klein
Hi guys, i would like to show a Glyph (GlyphID 932) of a Font that i use in my app. The Glyph isn't specified in the Unicode therefor is doesn't have and UnicodeID. Its a special redrawn 1 inside this Font. Under Photoshop you can acces it via OpenType- Format variants (or sort of, i use the

[android-developers] Re: Show Glyph outside Unicode Range ? label:Android

2013-10-09 Thread Nobu Games
I don't think that Android's typeface component or TextView allows switching to different variants. If your font does not have a mapping from that glyph to a Unicode code point then you probably won't be able to render it. If you have a font editing application you could extract that glyph and

[android-developers] Re: Upgrading Apk

2013-10-09 Thread Nobu Games
There is no fix and no workaround. Even if Google Play would allow you to upload your APK signed with a different key, Android devices would refuse to install your update because of that mismatch. If you are really sure that you cannot find your old keystore then you have to publish your update

[android-developers] Re: When running under Android 4.3 in a user profiles (not restricted), my app goes nuts!

2013-10-09 Thread bjv
One more update. I tried this same thing on a 4.2.1 tablet and its multi-user support and see exactly the same thing. So it is not a problem with just 4.3, but with the user profile feature introduced in 4.2 and the problem still exists in 4.3. -- You received this message because you are

[android-developers] Stop watch functionality in Android

2013-10-09 Thread Abhilash baddam
Hi, I want to implement something like Stopwatch functionality., When the user clicks on a Start button, I want to start the stopwatch which shows the hr:min:sec in textview and keep on updates it, and when the user clickis on button Stop, then timer needs to be stop. Even if the user starts the

[android-developers] Correcting the style of a drop down spinner in ActionBar

2013-10-09 Thread Simon Giddings
I am using the following theme : Theme.Holo.Light.DarkActionBar My application targets a minimum SDK of v14 and I am inserting a spinner to enable selection of items - ie this is NOT navigation. I have been searching for the correct way to correct the styling of the spinner so that it is

[android-developers] Correcting the styles of a drop down spinner in the ActionBar

2013-10-09 Thread Simon Giddings
I am using the following theme : Theme.Holo.Light.DarkActionBar My application targets a minimum SDK of v14 and I am inserting a spinner to enable selection of items - ie this is NOT navigation. I have been searching for the correct way to correct the styling of the spinner so that it is

Re: [android-developers] Re: Upgrading Apk

2013-10-09 Thread Raghavendra Rao
If you open the project using eclipse with the same workspace, most of the time when you try to generate signed apk, it will automatically autopopulate with the path where you previously stored. Try doing this. Hope this will help. All the best. On 9 October 2013 20:35, Nobu Games

Re: [android-developers] Stop watch functionality in Android

2013-10-09 Thread TreKing
On Wed, Oct 9, 2013 at 12:57 PM, Abhilash baddam abhilash.androiddevelo...@gmail.com wrote: Is the reason when the app goes to background, the android system is killing the Timer.. ? Yes. Review the app life cycle and the documentation on saving and restoring state.

[android-developers] Hax freeze

2013-10-09 Thread bob
Has anyone gotten Intel Hax working on a Macbook Pro or other Apple machine? I've got it installed on my Macbook Pro, but my entire computer freezes when I launch the Android Virtual Device that uses the Hax. Has anyone else seen this? Thanks. -- You received this message because you are

[android-developers] Re: Stop watch functionality in Android

2013-10-09 Thread Abhilash baddam
Hi, Thanks for the reply. Otherwise shall I use the service so that android system doesn't kill the service..? Is there any other better approach for this...?? On Thursday, October 10, 2013, TreKing treking...@gmail.com wrote: On Wed, Oct 9, 2013 at 12:57 PM, Abhilash baddam

Re: [android-developers] Re: Stop watch functionality in Android

2013-10-09 Thread TreKing
On Wed, Oct 9, 2013 at 9:41 PM, Abhilash baddam abhilash.androiddevelo...@gmail.com wrote: Otherwise shall I use the service so that android system doesn't kill the service..? Android will kill your Service if need be. This is not a solution. Is there any other better approach for

Re: [android-developers] lifecycle through onConfigurationChanged()

2013-10-09 Thread Hiko
Hello, TreKing, 2013年10月9日水曜日 3時02分25秒 UTC+9 TreKing: On Tue, Oct 8, 2013 at 8:04 AM, Hiko hikos...@gmail.com javascript:wrote: Why before rotating screen? Because I need to store how much scrolled is the page in pixel before rotating to compare with before and after. Try

[android-developers] Re: Stop watch functionality in Android

2013-10-09 Thread Abhilash baddam
Hi Trekking, If I use onrestoreinstance state then if I started timer say at 00:00:00 it started n its running, and presses on home then I will store the timer value. after some time, for ex I go back to app at 00:56:45 sec if the timer gets killed then I don't get the latest or upated value

Re: [android-developers] Re: Stop watch functionality in Android

2013-10-09 Thread TreKing
On Wed, Oct 9, 2013 at 10:26 PM, Abhilash baddam abhilash.androiddevelo...@gmail.com wrote: If I use onrestoreinstance state then if I started timer say at 00:00:00 it started n its running, and presses on home then I will store the timer value. Don't store timer value - store the start

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

2013-10-09 Thread Ashwini
If I set write type WRITE_TYPE_SIGNED, I get status code as 135 and write fails. However when I used write type as WRITE_TYPE_NO_RESPONSE I getsuccess status code. My device advertises WRITE_NO_RESPONSE as property of characteristic which I am trying to write. What else I can try for this? On