[Solved] How to predict performance of a program for smartphones developed on a pc

Rather than using benchmarks for the GPU, look at existing cross-platform applications with similar performance and see how it compares. Install it on your computer to make sure the intensiveness is similar (using whatever benchmarks you want), then install it on your android device to see if it can keep up to your expectations. You … Read more

[Solved] which programming language I should use between java and ruby for creating Android and iPhone app [closed]

Lua programming language is awesome for creating Android and iPhone Apps, You can Check this Corona SDK, Corona SDK is awesome and simple to use for creating Android and iPhone Apps, And for web apps Ruby is awesome for web Apps and You can See PHP too. I hope that I helped you. 🙂 6 … Read more

[Solved] How do I display a different image everytime the image is clicked? [closed]

If you are using html js and css: jsfiddle http://jsfiddle.net/harshdand/dec2mpbv/ html: <img src=”http://picture-gallery.dnspk.com/albums/userpics/10001/normal_1124750273-15.jpg” id=”images”/> js make an array of images u want var currentImageIndex = 0; var images=[ ‘http://picture-gallery.dnspk.com/albums/userpics/10001/normal_1124750273-15.jpg’, ‘http://images7.alphacoders.com/408/thumbbig-408758.jpg’, ‘http://images6.alphacoders.com/410/thumbbig-410020.jpg’, ‘http://picture-gallery.dnspk.com/albums/userpics/10001/normal_1127034390-11.jpg’ ]; document.getElementById(‘images’).setAttribute(‘src’,images[0]); document.getElementById(‘images’).onclick = function(){ if(currentImageIndex<images.length-1) currentImageIndex++; else currentImageIndex = 0; document.getElementById(‘images’).setAttribute(‘src’,images[currentImageIndex]); } solved How do I display a different image everytime the … Read more

[Solved] Is it safe to turn on the Developer options in my Android smartphone?

No problem arises when you switch on the developer option in your smart phone. It never affects the performance of the device. Since android is open source developer domain it just provides permissions which are useful when you develop application. Some for example USB debugging, bug report shortcut etc. solved Is it safe to turn … Read more