[android-developers] Re: Rating Hijacking !

2013-12-30 Thread Tolriq
Well for low or normal rated app this can be only half bad or good. For very high rated apps the result is catastrophic when a 4.9 rating 5 star rating is the only way to get known over competition this change that generate lot's of false rating is just killing some apps. Google have to do

[android-developers] Android how we can free the RAM memory of the device.

2013-12-30 Thread 12169
Hi, I have found some applications that claims to free the RAM of the device.after search i have found that they free the inactive memory of the device.but i donot found any api to free the inactive memory of the device.any help how we can free the RAM of the device. -- You received this

[android-developers] Re: ViewPager and ListFragments with onLongClick listener problem

2013-12-30 Thread Paul-Peter Tournaris
Anyone On Friday, 20 December 2013 18:10:44 UTC+2, Paul-Peter Tournaris wrote: Hello to everyone! I tried asking this in StackOverflow and had to no luck so you are my last hope! http://stackoverflow.com/questions/20681055/viewpager-and-listfragment-with-onlongclick-strange-behaviour

[android-developers] Re: Android how we can free the RAM memory of the device.

2013-12-30 Thread meshgraphics
The Android philosophy is all about freeing memory as needed. The os is constantly looking to kill an app if it needs the memory. Otherwise, it will leave the app in place for a quick load. On Monday, December 30, 2013 7:20:04 AM UTC-5, 12169 wrote: Hi, I have found some applications that

[android-developers] Re: Android how we can free the RAM memory of the device.

2013-12-30 Thread 12169
but,i want to know how i can free this memory. On Monday, December 30, 2013 4:20:04 AM UTC-8, 12169 wrote: Hi, I have found some applications that claims to free the RAM of the device.after search i have found that they free the inactive memory of the device.but i donot found any api to

[android-developers] Re: Android how we can free the RAM memory of the device.

2013-12-30 Thread meshgraphics
For what? -- 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...@googlegroups.com For more

[android-developers] Re: Android how we can free the RAM memory of the device.

2013-12-30 Thread 12169
Hi, I have seen an application clean master that free the system memory when we click the option( boost memory).and it actually free the system RAM and i checked this programmatically.but i donot know how this application free the system RAM.any help? On Monday, December 30, 2013 4:20:04

[android-developers] Re: Android how we can free the RAM memory of the device.

2013-12-30 Thread Nobu Games
I could imagine that forcing the OS into a low memory situation might trigger what you want. By temporarily allocating large blocks of memory from native code (using the NDK) the OS may try to stop background apps and services which in turn will free their claimed resources and RAM. Don't

[android-developers] Re: How to implement sharing the app on Facebook?

2013-12-30 Thread Parikshit Tomar
What I understand from that you need a button by which you can share some info to their facebook friends. For that you have three options 1. Use share intent to share any thing on social sites. you can also filter these intents. 2. use a third party library which will provide not facebook but

[android-developers] LinearLayout as child of ScrollView and View weight's are being ignored

2013-12-30 Thread stanlick
I have a LinearLayout with three views on it TextView, ImageView and TextView. The image was pushing the third TextView off the bottom of the screen, so I added weight to the three views. Now when I place this LinearLayout on a ScrollView, the weights are being ignored! Is there a way to

Re: [android-developers] LinearLayout as child of ScrollView and View weight's are being ignored

2013-12-30 Thread TreKing
On Mon, Dec 30, 2013 at 5:39 PM, stanlick stanl...@gmail.com wrote: Is there a way to constrain the size of an image without hardcoding pixels? I have tried every android:scaleType available and nothing works quite right. Posting your layout, what it looks like now, and what you're trying