[android-developers] Re: New Google Play Services Library causes ANR

2014-12-22 Thread Kostya Vasilyev
Looks like a classic two-thread deadlock. Thread main holding one monitor, and waiting for thread client_id_fetcher while trying to lock another: main prio=5 tid=1 MONITOR | group=main sCount=1 dsCount=0 obj=0x40e70a78 self=0x57017010 | sysTid=24172 nice=0 sched=0/0 cgrp=apps handle=1074714076

Re: [android-developers] ViewPager pages not drawn

2014-12-22 Thread Kostya Vasilyev
On Sunday, December 21, 2014 6:15:44 AM UTC+3, Doug Gordon wrote: SOLVED! After tracing the execution through ViewPager and FragmentPagerAdapter and trying to explain the very strange behavior I was seeing, I eventually discovered that when I wrote my fragments extending Fragment and

[android-developers] Mobile Ticketing Application.

2014-12-22 Thread yogendra G
Dear All, I am interested in developing android ticketing app. So ,i have few queries before i start as below: 1. Do we have any opensource platform/framework with all built-up tools which allows us only with few costumes. 2. What are the best and cheaper payment gateways available

[android-developers] Propagate the visibility from parent to child views

2014-12-22 Thread sweety fx
If anyone know the answer please let me know for the stack overflow question I asked http://stackoverflow.com/q/27573011/3722531 -- 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] Charts with Native and HTML5 Android Apps

2014-12-22 Thread Tim
The latest release of the MobiForms Developer mobile app development tool version 8.0 now supports the creation of Native or HTML5 offline apps with chart report objects including Bar Charts, Line Charts, Pie Charts and Dials. This release is underpinned by the JFreeChart/AFreeChart Java

[android-developers] Re: Migrating Android Library projects to Android Studio

2014-12-22 Thread jtoolsdev
I ran into a similar problem but it turned out that just using Organize Imports on each of those files did the trick. And doing so just eliminated the .R reference altogether in each file. Then it built. Isn't changing development environments fun! On Thursday, December 18, 2014 9:59:58 PM

[android-developers] the time between wifiManager.startscan() and the SCAN_RESULTS_AVAILABLE_ACTION intent received takes several hours

2014-12-22 Thread shiqun.shi
Hello, while developing an app, i found that on some devices, after invoking the wifiManager.startscan(), the SCAN_RESULTS_AVAILABLE_ACTION intent is received after several hours. And the continuously wifi scan lead the power consumption of my app goes up to the top 3. Any one knows why