BREAKING:

Android – Change Tab bar background color

Same as my previous post on TabBar as mentioned below, this article is also on TabBar and it is for changing Background color of Tab bar. Article 1: Android – simple Tab bar example Article 2: Android – iPhone like Tab bar in Android Problem: How to change Tab Bar background color in android? Solution: […]

Read More

Android – iPhone like Tab bar in Android

If you have gone through my previous article to Display Tab Bar in android, where we have just seen the simple Tab bar display process as per the Android way. But what if we want to display iPhone Like tab bar in Android(i.e. Displaying Tab bar at bottom side in Android). Is it possible? yes, […]

Read More

Android – simple Tab bar example

Problem: How to display Tab bar in Android? Solution: main.xml TabBarActivity.java tab_test.xml FirstActivity.java SecondActivity.java AndroidManifest.xml

Read More

Got a book “Linchpin” as a gift from Digicorp

Today I am not going to write any technical articles. But i would like to discuss about my gift which I got from Mr. Abhishek Desai on behalf of Digicorp Information systems pvt. Ltd. Digicorp has initiated to give books/gifts to the employees whoever completes their anniversary at Digicorp. As i have completed 1st year […]

Read More

Android – GridView – 1001 attributes to keep in mind

Same as my previous article on ListView attributes: Android – 0101 Attributes of ListView to keep in mind, here i am going to share about the attributes of GridView which we frequently use inside the application. Here are attributes: Mostly Used: 0000 => android:numColumns=”auto_fit” 0001 => android:verticalSpacing=”5dp” 0010 => android:horizontalSpacing=”10dp” 0011 => android:stretchMode=”columnWidth” 0100 => android:columnWidth=”90dp” […]

Read More

Android – 0101 Attributes of ListView to keep in mind

If you are knowing and has already worked with Android ListView, then these are the attributes you should know and use inside your android application to give a great look & feel to ListView. FYI, i have noted down these attributes as mostly used, i know there are some attributes also we can set while […]

Read More

Android – Retrieve InputStream from Web through HTTP

In almost all the normal application, we have to make a WebService call to fetch response and display it. Here is a snippet to make a call on web to fetch/retrieve the response. It will fetch the InputStream and if you want to display result as a string then you have to convert InputStream into […]

Read More