Re: [android-developers] Re: Goiogle Play - Dev Console not updating since July 25

2012-07-28 Thread Jeff Davies
Are you deliberately mischaracterizing my comment? I posted the date. Since I've been following my apps on GPlay I have never seen it miss a single day. The fact that it did miss 2 full days is remarkable. On Sat, Jul 28, 2012 at 11:29 PM, Zsolt Vasvari wrote: > It skipped one day, the 26th. Ba

[android-developers] Re: Goiogle Play - Dev Console not updating since July 25

2012-07-28 Thread Zsolt Vasvari
It skipped one day, the 26th. Back on 27th. No big deal, the OP makes it sounds like it hasn't updated for weeks. On Sunday, July 29, 2012 1:34:53 AM UTC+8, FiltrSoft wrote: > > sorry, meant "hasn't" > > On Saturday, July 28, 2012 12:00:46 PM UTC-4, Kaptkaos wrote: >> >> I was wondering if anyo

[android-developers] Re: READ_LOGS permission is not granted to 3rd party applications in Jelly Bean (api 16)

2012-07-28 Thread Chris Stratton
On Jul 29, 12:18 am, Alex Pruss wrote: > These kinds of things can provide a lot of value to users, and disabling > log access forces users to have to root their devices to do these things. That's not the real problem though. Reading the logs was never the right way to customize the behavior of

[android-developers] Re: Using eclipse with the NDK?

2012-07-28 Thread SChaser
Thanks to you and Nikolay for the help - I had missed the "how to" although I pieced it together from stackoverflow. I had tried that before posting, unfortunately. I'll take my future discussion to the ndk group so spooky won't embarrass himself further. On Friday, July 27, 2012 5:33:00 PM UT

Re: [android-developers] READ_LOGS permission is not granted to 3rd party applications in Jelly Bean (api 16)

2012-07-28 Thread Alex Pruss
Besides debugging, there are a number of other things that are very useful to users that you can do with log access. One of these, is apps that provide special per-app settings and hence need to know which app is currently running. Here are some examples: 1. The SmartApp Protector app (and ot

[android-developers] Re: How can I configure the Refund Period when using ServerManagedPolicy () in Android LVL

2012-07-28 Thread Ted Hopp
You cannot control the values for VT, GT, GR and UT. The server sets these values automatically (as described here ). -- You received this message because you are subscribed to the Google Groups "Android D

Re: [android-developers] Launching an intent from a Widget Settings Class

2012-07-28 Thread TreKing
On Sat, Jul 28, 2012 at 10:57 AM, Cythes wrote: > The title pretty much sums up what I am trying to do at this point. > Personally, I don't think your title is very clear. > Is there a way to set an intent with in a settings class > Set an Intent? On what? For what? What is a "settings class"

[android-developers] No internet Calling account Error

2012-07-28 Thread Cythes
I'm writing a piece of code that has a error every time I run it stating: -No internet calling account availible I'm wondering if there is some kind of permissions involved in this or something else I am missing. -- You received this message because you are subscribed to the Google Groups "An

Re: [android-developers] Fragments Bitmap Recycling + a bunch of bitmap oriented questions.

2012-07-28 Thread Dianne Hackborn
If you have a fragment that holds on to a lot of memory in its view hierarchy and are concerned about this, then use FragmentTransaction.remove() to make it no longer visible -- that will remove it from its parent view and destroy its view hierarchy, so it doesn't hold on to any references. (If yo

Re: [android-developers] Fragments Bitmap Recycling + a bunch of bitmap oriented questions.

2012-07-28 Thread Dmitriy F
Thanks for the answers! Would you mind to suggest on the part about fragments, bitmaps and memory management ? I decided to implement the app with 3 activities and about 8 fragments. The fragment number might slightly increase yet I think it's not the fragments but their bitmaps that gonna caus

Re: [android-developers] Fragments Bitmap Recycling + a bunch of bitmap oriented questions.

2012-07-28 Thread Dmitriy F
Thanks for the answers! Would you mind to suggest on the part about fragments and memory management ? I decided to implement the app with 3 activities and about 8 fragments. The activity number might slightly increase yet I think it's not the fragments but their bitmaps that gonna cause trouble

[android-developers] Re: Beginner can't execute program on VM

2012-07-28 Thread bob
Maybe unlock the emulator by swiping the screen or pressing the home button? If you post a screenshot of the emulator, I bet we can help you. On Tuesday, July 24, 2012 2:56:19 AM UTC-5, Fabrizio Bartolomucci wrote: > > Hullo, > I am a beginner in Android development coming from the iOS. I t

[android-developers] Re: Beginner can't execute program on VM

2012-07-28 Thread soynerdito soynerdito
Remember to create a Virtual Device that matches the API level you are compiling against. From the shell you may execute "adb devices" It should show an entry for each device you have connected. You may view the devices from Eclipse GUI Window-Show View-Devices (If devices is not listed then g

Re: [android-developers] Re: ListView with custom view item refresh issue

2012-07-28 Thread soynerdito soynerdito
A nice post describing that is here http://lucasr.org/2012/04/05/performance-tips-for-androids-listview/ With an example of what is called a view holder to have a performance improvement. Also in the Google IO 2010 it is well explain from the developer itself http://www.youtube.com/watch?v=wDBM6w

Re: [android-developers] OpenGL ES 2 support in emulator?

2012-07-28 Thread satya.komatin...@gmail.com
wondering if there is an update on this and if the necessary things are there to run the ES 2.0 programs by regular developers on the emulator. Thanks Satya On Friday, March 23, 2012 3:18:06 AM UTC-4, Romain Guy (Google) wrote: > > The emulator itself supports OpenGL ES 2.0 already with the -gpu

Re: [android-developers] ADB Multi-phone Connection Reliability

2012-07-28 Thread Kostya Vasilyev
2012/7/28 Andrey > Kostya, > > Thanks, I doubt the ports/hubs are an issue (since it happens on several > computers, with or without hubs), but the USB cables could be the problem. > Do you think these cables would be worth trying? > > > http://www.monoprice.com/products/product.asp?c_id=103&cp_i

[android-developers] Re: Using a specific GLES library with the emulator-x86

2012-07-28 Thread bob
I don't think any serious OpenGL developers work in the emulator. They probably use real devices like the Galaxy Tab. On Thursday, July 26, 2012 8:43:00 AM UTC-5, goodG wrote: > > Hi, > I have a GLES library ( libEGL.so + libGLESv2.so provided by the VGA > manufacturer ) which support a GL

[android-developers] Re: ListView with custom view item refresh issue

2012-07-28 Thread bob
Interesting… I usually just create a new View every time in getView… so I've never run into that. On Saturday, July 28, 2012 6:10:50 AM UTC-5, Sergio Panico wrote: > > Hi all, > I thank all for your answers. > > I've understood the "strange" behaviour that doesn't makes my ListView to > r

Re: [android-developers] Fragments Bitmap Recycling + a bunch of bitmap oriented questions.

2012-07-28 Thread Romain Guy
> > 1) Does ImageView.SetImageResource applied against the same id twice or > thrice consumes memory for the same bitmap or uses a separate range for > every imageview element ? > I don't quite understand your question. When a Bitmap is loaded as a Drawable (which is what ImageView does), it gets

[android-developers] Re: Goiogle Play - Dev Console not updating since July 25

2012-07-28 Thread FiltrSoft
sorry, meant "hasn't" On Saturday, July 28, 2012 12:00:46 PM UTC-4, Kaptkaos wrote: > > I was wondering if anyone else was seeing this. When I check my dev > console there are now stats for my apps after July 25. Is there a problem > with Google Play or did I miss a memo? Thanks! > -- You rece

[android-developers] Re: Goiogle Play - Dev Console not updating since July 25

2012-07-28 Thread FiltrSoft
You're right, mine has updated either. On Saturday, July 28, 2012 12:00:46 PM UTC-4, Kaptkaos wrote: > > I was wondering if anyone else was seeing this. When I check my dev > console there are now stats for my apps after July 25. Is there a problem > with Google Play or did I miss a memo? Thanks

[android-developers] Goiogle Play - Dev Console not updating since July 25

2012-07-28 Thread Kaptkaos
I was wondering if anyone else was seeing this. When I check my dev console there are now stats for my apps after July 25. Is there a problem with Google Play or did I miss a memo? Thanks! -- You received this message because you are subscribed to the Google Groups "Android Developers" group. T

[android-developers] Launching an intent from a Widget Settings Class

2012-07-28 Thread Cythes
The title pretty much sums up what I am trying to do at this point. I have 99.9% of my code done but now its just a matter of debugging the question present is: Is there a way to set an intent with in a settings class if not how would I go about making the settings class its own app icon so user

Re: [android-developers] Using a specific GLES library with the emulator-x86

2012-07-28 Thread Harri Smått
Yes, it's called "GPU Emulation" in menus but final flag is "hw.gpu.enabled=yes". What I did was I had a very simple OpenGL app which I changed so that I used setEGLContextVersion(2) instead. And it seemed to work ok. Anyway. I never tested GLES20 properly just ran a few quick tests and concluded

Re: [android-developers] Using a specific GLES library with the emulator-x86

2012-07-28 Thread goodG
did you mean "Gpu emulation" ? how do you check the support for a GLES2 context ? Il giorno sabato 28 luglio 2012 08:23:41 UTC+2, Harri Smått ha scritto: > > Hi, > > I don't know about using specific GLES library but there's a virtual > machine flag you can set in AVD settings. After setting thi

Re: [android-developers] ADB Multi-phone Connection Reliability

2012-07-28 Thread Andrey
Kostya, Thanks, I doubt the ports/hubs are an issue (since it happens on several computers, with or without hubs), but the USB cables could be the problem. Do you think these cables would be worth trying? http://www.monoprice.com/products/product.asp?c_id=103&cp_id=10303&cs_id=1030307&p_id=863

[android-developers] Fragments Bitmap Recycling + a bunch of bitmap oriented questions.

2012-07-28 Thread Dmitriy F
Hi, I'm developing an app which uses ViewPager(holds 4 fragments) and a layout that hosts single-page fragments. I haven't populated my fragments with bitmap data but I'm already anxious about memory management. Because of the bogus design I can't extract ViewPager to a separate activity which

Re: [android-developers] Hi Developers:

2012-07-28 Thread Nadeem Hasan
You realize that your sarcasm is lost on these people, right? On Jul 27, 2012 2:24 PM, "Justin Anderson" wrote: > I know you are a nice guy and always do the search on other's behalf but I >> think the best response is to not respond at all just like everyone else >> here. If the poster is not sm

[android-developers] Re: ListView with custom view item refresh issue

2012-07-28 Thread Sergio Panico
Hi all, I thank all for your answers. I've understood the "strange" behaviour that doesn't makes my ListView to refreshes correctly. Here is the link where I've found the solution: https://groups.google.com/forum/?fromgroups#!topic/android-developers/2Ub4yhyKumM This topic clearly explains tha

Re: [android-developers] HI ALL

2012-07-28 Thread Asheesh Arya
awesum i just love it!!! keep it up!!! -- 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@googlegroups.com To unsubscribe from this group, send email to android-developers+unsubscr...

Re: [android-developers] HI ALL

2012-07-28 Thread Jim Graham
Hi. -- THE SCORE: ME: 2 CANCER: 0 73 DE N5IAL (/4) | "> There it was, right in the title bar: spooky1...@gmail.com | > Microsoft Operations POS." < Running Mac OS X Lion > | ICBM / Hurricane: | "Never before has a TLA been so appropriately 30.44406N 86.59909W|

Re: [android-developers] Beginner can't execute program on VM

2012-07-28 Thread Fabien R
On 24/07/2012 09:56, Fabrizio Bartolomucci wrote: > Hullo, > I am a beginner in Android development coming from the iOS. I trying > setting the Andorid SDK and Eclipse by opening a new project and executing > it. On the SDK part everythings seems ok but the Virtual machine seems to > take no not

Re: [android-developers] HI ALL

2012-07-28 Thread Michael Banzon
No... On Sat, Jul 28, 2012 at 11:33 AM, aparna rani wrote: > Hi all now i am implementing Website design. this is my website > http://www.retigence.com > Can you please give me feed back how its looking... > And also give me the some tips to increase the google page ranking > > Thanking y

Re: [android-developers] HI ALL

2012-07-28 Thread VIJAYAKUMAR M
Hel On Sat, Jul 28, 2012 at 3:03 PM, aparna rani wrote: > Hi all now i am implementing Website design. this is my website > http://www.retigence.com > Can you please give me feed back how its looking... > And also give me the some tips to increase the google page ranking > > Thanking

[android-developers] HI ALL

2012-07-28 Thread aparna rani
Hi all now i am implementing Website design. this is my website http://www.retigence.com Can you please give me feed back how its looking... And also give me the some tips to increase the google page ranking Thanking you, -- You received this message because you are subscribed to the Goo

[android-developers] Re: Jelly Bean, READ_LOGS and 'Application Lockers'

2012-07-28 Thread Pent
How about a broadcast to DeviceAdminReceiver. Pent -- 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@googlegroups.com To unsubscribe from this group, send email to android-developers+un

Re: [android-developers] Re: Jelly Bean, READ_LOGS and 'Application Lockers'

2012-07-28 Thread Dianne Hackborn
On Fri, Jul 27, 2012 at 1:26 PM, Bryan Ashby wrote: > Perhaps another solution is a API set and a new level of permission > authentication. E.g., an developer would need to sign with a key that > contains a trusted CA (Google stamp of approval or such) > That is not how Android works. There are

Re: [android-developers] Re: About one of my app idea | Please share your thoughts.

2012-07-28 Thread Subin Sebastian
Thanks Nobu. On Wed, Jul 25, 2012 at 8:46 PM, Nobu Games wrote: > But apart from normal text+image pages, I'm planning to include simple >> animations, >> audio background and touch events along with the content. >> > > Please do not try to reinvent the Internet of the late 1990ies. GIF > animati