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 – Sending SMS from android application – Method 2

Hi, Here i am going to discuss about to send SMS from your android application. Basically there are 2 ways by which we can send sms: Open native SMS composer write your message and send from your android application

Read More

Mobile Trick – Disable Data connection

Hi, Did you ever suffer from unwanted charges charged for unwanted data connection, then here is  solution for you to “Disable data connection” from your mobile phone. Just follow the below steps: 1. Type *#*#4636*#*# 2. Now you have a list of options available in your screen regarding : phone information, battery information, battery history, […]

Read More

Android – Send object from one activity to another Activity using Intent

Here is a simple example about how to pass custom class object from one activity to another activity. To pass an object, your custom class object must be serialized, to do so just implement the Serializable interface. For example: Now To pass the object of Student class From Activity ‘A’ to activity ‘B’: To retrieve […]

Read More

Android – EditText TextWatcher

Today we are going to discuss about TextWatcher which can be implemented in EditText. What is TextWatcher It is an Interface. It has 3 methods to be overrided whenever it is implemented: afterTextChanged beforeTextChanged onTextChanged It is used to keep watch on EditText while entering data into it. We can perform operation and keep watch […]

Read More

Android – What is AsyncTask?

I am going to discuss about AsyncTask. Do you know about AsyncTask and what are the usage of it? Here are some of the points: AsyncTask enables proper and easy use of the UI thread. AsyncTask is used when you want to perform long awaited task in background. AsyncTask publish result on the UI thread(display […]

Read More

Winner of State-Level Best Project competition – Success story of my MCA semester-5 project "Transpo – A mass transit information system portal" at Techteer systems

Hi guys, Here i am sharing this article on my “entry point to prefessional world”. Why i am inspired to write this article? As of this time, i am highly involved in Android application development at Digicorp Information Systems Pvt. Ltd., So suddenly one thing came in my mind that i should write “vote of […]

Read More

Android – Take picture by using native camera

Problem: Launch native camera application to capture image and use it inside imageview Description: I hope you may across the application in which they are launching camera to capture image and then they use the captured image to show inside the imageview. So here is an article for you to implement the Camera functionality to […]

Read More