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 – parseSdkContent failed

Problem: ‘Android SDK Content Loader’ has encountered a problem. parseSdkContent failed Solution: Today i just have started development under the Eclipse Indigo environment and while setting Android SDK preferences, i suddently got the following error: ‘Android SDK Content Loader’ has encountered a problem. parseSdkContent failed java.lang.NullPointerException. I have tried to do google around half an […]

Read More

Android – Spinner example

Today we are going to discuss about implementing Spinner widget. Spinner is a widget similar to a drop-down list for selecting items. In this tutorial,we will create a simple spinner widget that displays a list of days. When one is selected, a toast message will display the selected item. (FYI, I have taken this definition […]

Read More

Android – CheckBox Example – isChecked()

Here we are going to have a demo of CheckBox’s isChecked() method. The isChecked() method is used to check whether the particular CheckBox is checked or unchecked. main.xml CheckBoxDemo.java

Read More

Android – CheckBox Example – OnCheckedChangeListener

Here I am going to give you a simple demo of CheckBox and its OnCheckedChangeListener. In this tutorial, we will see the toast notification whenever a particular CheckBox is checked. main.xml CheckBoxCheckedDemo.java

Read More

Android – com.android.ddmlib.SyncException

Problem: com.android.ddmlib.SyncException: Too many open files Solution: During application development and testing the same on the device, I have faced this exception: com.android.ddmlib.SyncException: Too many open files I have tried to find out the possible solution to resolve the above exception, so i am not sure about the solution but i got the StackOverflow link […]

Read More

Android – ListView – 5 – Optimized custom ListView

Welcome to the part 5 of ListView series, so far this series: Part 1 – Simple listview Part 2 – ListView with Two TextViews Part 3 – ListView with Two TextView and One ImageView Part 4 – ListView with Two TextView and One ImageView In part 4, we talked about display a listview, having two […]

Read More

Android – Include Other Layout

Problem: How can I include other layouts inside the current XML layout file? Solution: Today I came across a great solution that we can also include other layout by using “Include Other Layout” in drag and drop way. Yes earlier i was doing the same by using tag inside the XML layout file. But now […]

Read More