Display Text on Android application Screen

Published on :

For all those new Android developers out there, here is how you can set text and display it on your Android application’s front end. TextView textViewObject = new TextView(this); textViewObject.setText(“Hello, Android”); setContentView( textViewObject); The output on the screen would look like : Here you create a TextView class’s object textViewObject […]

Make your android app Internet compatible

Published on :

Rectify java.net.SocketException: Permission denied (maybe missing INTERNET  permission) error By default, permissions for accessing Internet by an Android file are off. If you wish to do the same you may need to add a simple line into the manifest file of your Project. The permission "android.permission.INTERNET" allows applications to open […]

Displaying a Toast message in Android application

Published on :

Toast messages is a very popular way of raising a message within an android application to show user a warning, message or an alert. The screenshot below shows an example toast notification from a Twitter application. It displays a Toast that article is posted to Twitter successfully. To show a […]

Android Development [Getting Started]

Published on :

So you want to develop for Android ? Huh… ? Android is a open source OS by Google (rather purchased by Google in 2005) which is used in Mobile phones as well as in tablets. Hardware manufacturers like Samsung, Amazon are using Android to power their devices. You would ask […]

Lost key Finder : A Design concept

Published on :

How many times you have placed your car’s keys somewhere in your house and wished you could have placed it at a proper place before. Happened with me many a times though and I always wished I would have some kind of transmitter-receiver thing to search the keys. Well, here […]

Giveaway and Review: Binverse, Usenet access Provider

Published on :

Usenet is a worldwide distributed Internet discussion system developed by Duke University graduate students Tom Truscott and Jim Ellis in 1980. Users read and post messages (called articles or posts, and collectively termed news) to one or more categories, known as newsgroups. Usenet resembles a bulletin board system (BBS) in […]