Skip to content Skip to sidebar Skip to footer
Showing posts with the label Performance

Stress Testing Android Dalvik

I've been reading up on the Android dalvik, and I was curious as to how one would go about stre… Read more Stress Testing Android Dalvik

Android Sqlite / Blob Perfomance Issue

Ever since I moved my data from ArrayList to a sqlite database on Android, I have a serious perform… Read more Android Sqlite / Blob Perfomance Issue

How To Decrease Memory Usage For Android Studio (also Works For Eclipse)

After some months using Android Studio, i was very upset of how much memory it was using: 2GB for … Read more How To Decrease Memory Usage For Android Studio (also Works For Eclipse)

Renderscript Fails On Gpu Enabled Driver If Usage_shared

We are using renderscript for audio dsp processing. It is simple and improves performance significa… Read more Renderscript Fails On Gpu Enabled Driver If Usage_shared

Does Android(on Arm) Have The Hardware Performance Counters?

So like in Linux on Intel processor, we have a large amount of hardware performance counters to acc… Read more Does Android(on Arm) Have The Hardware Performance Counters?

Prevent Memory Leak In Android

I'm having some troubles with memory leaks on Android. I do have a simple application with a r… Read more Prevent Memory Leak In Android

Is It A Good Idea To Declare Static View In Android?

The problem : I have one class and one activity: The class do the logic and use a complex algorithm… Read more Is It A Good Idea To Declare Static View In Android?

Android Efficiency - Views

Is it better to findViewById( ) once and store in the scope of your activity (class-wide) or call t… Read more Android Efficiency - Views