Re: [android-developers] Filename with invalid encoding crashes File.list()

2013-12-12 Thread Martin Heller
Unfortunately, Harri is right. The whole VM crashes regardless whether the code is surrounded with a try/catch block or not. Following the stack trace I posted before, VM crash is recorded in logcat 12-12 10:40:01.942: E/dalvikvm(1914): VM aborting 12-12 10:40:01.942: A/libc(1914): Fatal signal

Re: [android-developers] Displaying Google Map Android API V2 in fragment

2013-12-12 Thread Surabhi Jain
Hi Harri, I have try to write executePendingTransactions() line in my code, but in both cases not getting success :( in *onResume* method of* CustomFragment Class*. App get Crashed with exception *android recursive entry to execute pending transactions*. My Code is as follows: fragmentManager =

Re: [android-developers] Filename with invalid encoding crashes File.list()

2013-12-12 Thread Martin Heller
I have filed a bug report for this issue http://code.google.com/p/android/issues/detail?id=63576 Hopefully this issue is resolved soon. Martin On Thursday, December 12, 2013 10:51:14 AM UTC+1, Martin Heller wrote: Unfortunately, Harri is right. The whole VM crashes regardless whether the

Re: [android-developers] Is it possible to access text messages to back up as they are received?

2013-12-12 Thread Daniel Chacon
Would I use the SmsManager and SmsMessage api calls? Looks like it is what I need, thank you On Wed, Dec 11, 2013 at 8:40 PM, TreKing treking...@gmail.com wrote: On Wed, Dec 11, 2013 at 8:04 PM, Dan Cha cuban...@gmail.com wrote: im wondering if there is a way I can build a app for myself to

Re: [android-developers] Filename with invalid encoding crashes File.list()

2013-12-12 Thread Justin Anderson
On Thu, Dec 12, 2013 at 5:19 AM, Martin Heller heller.m...@gmail.comwrote: Hopefully this issue is resolved soon. That's a good one... This is Google we are talking about here. :-) Thanks, Justin Anderson MagouyaWare Developer http://sites.google.com/site/magouyaware -- You received this

Re: [android-developers] Unlike previous versions, Paint.measureText() returns a rounded value in 4.4?

2013-12-12 Thread Piren
you can try using this instead: http://developer.android.com/reference/android/text/Layout.html#getDesiredWidth(java.lang.CharSequence, int, int, android.text.TextPaint) Or just copy the source code for Paint without the Ceil :) On Wednesday, December 11, 2013 8:28:09 PM UTC+2, Harri J. Smatt

Re: [android-developers] Re: Get Area code (DDD)

2013-12-12 Thread Justin Anderson
http://lmgtfy.com/?q=android+get+phone+number+programmatically Thanks, Justin Anderson MagouyaWare Developer http://sites.google.com/site/magouyaware On Wed, Dec 11, 2013 at 6:41 PM, RichardC richard.crit...@googlemail.comwrote: Most SIMs do not know their own phone number as they do not need

Re: [android-developers] Reverse Fragment Stack Order

2013-12-12 Thread Justin Anderson
What specifically are you trying to accomplish? Maybe there is a better way to get the same effect... Thanks, Justin Anderson MagouyaWare Developer http://sites.google.com/site/magouyaware On Wed, Dec 11, 2013 at 2:58 PM, Alex Fu alex.fu...@gmail.com wrote: Is there a way to reverse the

[android-developers] Re: Reverse Fragment Stack Order

2013-12-12 Thread Alex Fu
Found the answer to my own question and published a sample app to demo -- https://github.com/alexfu/ReversedFrameLayout On Wednesday, December 11, 2013 4:58:11 PM UTC-5, Alex Fu wrote: Is there a way to reverse the order in which Fragments are added and drawn onto the screen? Instead of the

Re: [android-developers] Status Bar Notification

2013-12-12 Thread Justin Anderson
Complete shot in the dark here... but have you tried giving your notification an id other than 0? Thanks, Justin Anderson MagouyaWare Developer http://sites.google.com/site/magouyaware On Sun, Dec 8, 2013 at 10:51 PM, Rahul Kaushik rahulkaushi...@gmail.comwrote: Hi, Status bar notififcation

Re: [android-developers] BitmapMesh Refreshing

2013-12-12 Thread Justin Anderson
What have you tried so far? Thanks, Justin Anderson MagouyaWare Developer http://sites.google.com/site/magouyaware On Fri, Nov 1, 2013 at 1:21 AM, ashwini vandanapu ashwini.vandan...@gmail.com wrote: Dear All, In my android application, i want to apply image warp effect for

Re: [android-developers] how to get item from grid view at specific postion

2013-12-12 Thread Amit Mangal
Trekin i dont know the solution but one hundered percent sure that u r wrong On 12-Dec-2013 7:40 AM, TreKing treking...@gmail.com wrote: On Wed, Dec 11, 2013 at 5:14 PM, Amit Mangal forum.amit.man...@gmail.comwrote: i am trying to add saveForLaterOverlay on button pressed number item in

[android-developers] Google Drive says Action Bars on the bottom are ok?

2013-12-12 Thread Ken
Just noticed this recently...Google Drive has a few action bar items at the bottom. I thought we weren't supposed to put action bar items at the bottom because it's confusing to users with the soft button bar (with back, home, etc.) down there as well? -- You received this message because

[android-developers] Swipe app out of recent tasks permanently kills app (like force-stop) even though it's running background services!

2013-12-12 Thread 3c
The swipe app out of recent tasks is supposed (as far as I understand it) to terminate all activities but keep services running. This is true (and I verified that behavior) until KitKat (verified on 4.4.1 and 4.4.2). In KitKat, the app is killed instantly: 12-12 22:04:47.386:

Re: [android-developers] Google Drive says Action Bars on the bottom are ok?

2013-12-12 Thread Kostya Vasilyev
Do you mean the panel that slides up and down as you scroll the documents list? Google+ does this too. I guess it's the fashionable UI pattern du jour. -- K 2013/12/12 Ken kenk...@gmail.com Just noticed this recently...Google Drive has a few action bar items at the bottom. I thought we

[android-developers] Re: Swipe app out of recent tasks permanently kills app (like force-stop) even though it's running background services!

2013-12-12 Thread RichardC
Based on the blog post when the task killing of applications was introduced, I would say that restarting a service of a killed application (process) was an implementation bug. It was clear from the blog post that when and end-user task killed an application then that application (and all

Re: [android-developers] Google Drive says Action Bars on the bottom are ok?

2013-12-12 Thread Ken
On Thursday, December 12, 2013 4:40:45 PM UTC-5, Kostya Vasilyev wrote: Do you mean the panel that slides up and down as you scroll the documents list? Google+ does this too. Yep...the panel at the bottom w/ the Camera button. I thought Google said not to do this? :-P It's a weird UI

[android-developers] Re: Swipe app out of recent tasks permanently kills app (like force-stop) even though it's running background services!

2013-12-12 Thread 3c
I cannot agree with this as the recent task list in no way suggest killing the apps. Actually every users seems to see it differently. Some take that recent task list as the name suggest, recent tasks and activities, others see it as you suggest an app killing, but most users don't know what's

Re: [android-developers] how to optimize reliability of gcm messages on 2G network?

2013-12-12 Thread Robert Greenwalt
Applications using GCM should never need concern themselves with 2g vs 3g vs wifi issues. That is supposed to be one of the values of GCM. Someone from the GCM team should comment on 2G reliability. On Mon, Dec 9, 2013 at 8:57 PM, ranjit R ranjitr...@gmail.com wrote: I am using 2g network

[android-developers] Re: Swipe app out of recent tasks permanently kills app (like force-stop) even though it's running background services!

2013-12-12 Thread RichardC
Have a read of: Launch controls on stopped applications in http://developer.android.com/about/versions/android-3.1.html Note that it says: *Applications are in a stopped state when they are first installed but are not yet launched and when they are manually stopped by the user (in Manage

Re: [android-developers] Is it possible to access text messages to back up as they are received?

2013-12-12 Thread TreKing
On Thu, Dec 12, 2013 at 8:46 AM, Daniel Chacon cuban...@gmail.com wrote: Would I use the SmsManager and SmsMessage api calls? Never used those facilities, but strictly based on the name, sure seems like a good place to start.

Re: [android-developers] how to get item from grid view at specific postion

2013-12-12 Thread TreKing
On Thu, Dec 12, 2013 at 11:01 AM, Amit Mangal forum.amit.man...@gmail.comwrote: Trekin i dont know the solution but one hundered percent sure that u r wrong Let me get this straight. You came here asking for help with this issue. You admit you don't know the answer. Yet you are somehow 100%

Re: [android-developers] BitmapMesh Refreshing

2013-12-12 Thread ashwini vandanapu
Hi, I have tried, but no Luck. On Thu, Dec 12, 2013 at 9:06 PM, Justin Anderson magouyaw...@gmail.comwrote: What have you tried so far? Thanks, Justin Anderson MagouyaWare Developer http://sites.google.com/site/magouyaware On Fri, Nov 1, 2013 at 1:21 AM, ashwini vandanapu

Re: [android-developers] Re: Swipe app out of recent tasks permanently kills app (like force-stop) even though it's running background services!

2013-12-12 Thread Cedric Counotte
Yeah thanks but no thanks. I'm fully aware of that. I'm talking about the recent task list. Removing an app from that list does like a force stop on KitKat. Why don't you read what I wrote in the first place? Le 13 déc. 2013 04:35, RichardC richard.crit...@googlemail.com a écrit : Have a read

[android-developers] Country filter

2013-12-12 Thread Yougli
Hi, I'm working on an application that needs to be blocked for a specific country on the Play Store. For instance, my application should be available worldwide except in France, which means that french users should not be able to download the application, even if they are outside of France,