Android Basics Archives - Page 3 of 11 - Androhub

Clipboard Banner

Android Clipboard Tutorial

Android provides the clipboard framework for copying and pasting different types of data. The data could be text, images, binary stream data or other complex data types. Android provides the library of ClipboardManager and ClipData and ClipData.item to use the copying and pasting framework.In order to use clipboard framework, you need to put data into

Read More
CountDownTimer Banner

Count Down Timer in Android

Today we are going to create a CountDownTimer in Android. CountDownTimer is used to Schedule a countdown until a time in the future, with regular notifications on intervals along the way. For this we are going to use inbuilt CountDownTimer abstract class. Basically CountDownTimer is working on Seconds but we can manipulate it to work

Read More
Multilingual Banner

Android Building Multi-Language Supported App

Android is one of the few popular mobile operating systems having millions of users over 190 countries and growing day by day. So when you are aiming your app to be globally successful, it is always a good idea to make the app localised by supporting different languages. While localising, you should consider using appropriate

Read More
WebView Banner

Android Advance WebView

We had learn basic things about WebView in my earlier tutorial. In that tutorial i am showing how to load url in WebView. But in today’s tutorial we are going to learn some more things about WebView. The things that we are going to learn today are given below: 1 . Go Back  – We

Read More
Dynamic Layout Banner

Android Creating Layouts Programatically

In Android sometimes you need to create layouts programatically or dynamically according to your need. So today’s is about how to create layouts programatically in android. Below is a method that I am going to use in this article. In this i am creating 5 Buttons dynamically and setting their ID’s for further use. After

Read More