BREAKING:

Paresh Mayani

CEO & Co-Founder at SolGuruz® | Organiser @ GDG Ahmedabad | Top 0.1% over StackOverflow | 15+ years experienced Tech Consultant | Helping startups with Custom Software Development

Android – New Android market app for Android phone

Android Developer blog has stated yesterday that they are ready to roll out new Android market app for the Android enabled devices (having Android 2.2 Froyo or higher).   New Features: Can buy books Can buy movie on rent Better showcase of applications and games UI with application categories on left and application list on […]

Read More

Android – ListView – 4 – Custom ListView

Problem: Android – ListView with Two TextViews and ImageView Welcome to the Part 4 of ListView series. So far this series: Part 1 – Simple ListView Part 2 – ListView with Two TextView Part 3 – ListView with Two TextView and One ImageView This part is just an extended part of Part 3, where we […]

Read More

Android – custom Toast notification

Problem: How to create a custom Toast notification? Solution: First, if you don’t know about Toast notification in android, then I would suggest you to go through the previous article on: Text notifications (Toast). In this article, we will look into how to define a custom Toast notification, to show a notification with image and text. […]

Read More

Android – Text notifications (Toast)

Problem: How to give alert message (text notification) to the user of the application? Toast notification It is known as Toast notification in Android. It is non-interactive message. It is used to display text notifications(message) to the user. It automatically fades-in and fade-out on the surface of the window/screen. It covers only the area which […]

Read More

Android – Enable the "Move to SD card" Feature

Problem: How do I enable the “Move to SD card” feature? Solution: To solve the above problem, we have to set the android:installLocation attribute inside the AndroidManifest.xml file. android:installLocation => It defines the location where the application will install. To allow the system to install your application on the external storage, modify your manifest file […]

Read More

Android – TextView autoLink attribute

Today this tutorial is about the autoLink attribute of TextView. andorid:autoLink => By using this attribute, android can controls whether links(such as urls, emails, phone and address) are automatically found and converted to clickable links. In other meaning we can say whenever we display any kind of number then it assume we have entered phone numbers inside the […]

Read More

Android – Validate email address

Problem: How to validate email address in android? Solution: EmailValidationActivity.java main.xml

Read More