AndroidConnected TVMedia & Entertainment
Android TV development follows the same structure as other android apps like Android phones and tablets. We can modify an existing Android app to an Android TV app. Anybody with a good understanding of Android application development can create a TV app. Prerequisites for Android TV App Android Development IDE (Android Studio) SDK Tool Verison : […]
It’s surprising that only about 8% of developers actually test their application. There are so many buggy apps on the marketplace and it is quite disheartening for developers who take mobile app development seriously. “Release it now, fix it later” is a common practice these days. A buggy app will always cost the developer and the […]
About PayU India Gurgaon-based PayU India Internet Pvt. Ltd. offers online payment solutions to websites and mobiles apps. PayU offers electronic payment services to merchant website through its partnerships with various banks and payment instrument companies. PayU India started in October 2011 and claims to be the number one payments company in the e-commerce category in […]
This tutorial is about how to create “swipe to dismiss” RecyclerView item like Gmail app. For this, we don’t need any 3rd party Library. For this purpose, you just need to add one class which is part of Android Support Library. The name is “ItemTouchHelper”. By now you know that this blog is all about […]
If you are using Appium, TestNG & Maven test frameworks and Java language for your mobile automation project, then it’ll help you. To run your Appium Java TestNG scripts, you need to club your test-cases & all the dependencies in one file and provide it to Device Farm. And to attain this, do some modifications in the […]
App Automation lets you ensure that you can run your test-suite repetitively, with minimal effort & check the results whether its meeting your functional requirements or not. After each build-release, you need to follow the same procedure. But the challenge is to cover variety of phones & tablets and it is really impossible to test […]
What is Ripple? Ripple is a small wave like pattern, generally formed on the surface of some liquid when you drop something on it. What is Ripple effect in Android? Ripple effect provides an instantaneous visual confirmation at the point of contact when users interact with UI elements. These UI elements could be any of […]
How to work with Android Permission System in Android M To protect the android system and the user’s privacy, Android system runs each application in a limited access sandbox. If the application wants to use resources or information outside of its sandbox, the application has to explicitly request permission. Depending on the type of permission […]
During most of the android design and development , we mainly use three types of layout: LineraLayout ,RelativeLayout, FrameLayout. And for creating complex view we use weight property to distribute view across screens. But while using weights you must have noticed that we have to add a default container view to encapsulate our child view […]