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

PHP – About ORM(Idiorm)

Hi, After been around 1 year i have again started to enjoy with PHP along with Android programming. But this time i am used to develop web-service to be used inside android application. Before 1 year, i have done all the rough coding as i have developed my own DB class and other stuffs. This […]

Read More

Android – Solution for "ADB connection time out"

Today while developing and testing android application, I can across “ADB connection timeout” exception: OR After trying lot to search for the solution, I got the fix. Solution: Window => Preferences => ADB Connection time out(ms): 10000, just set it in ms(milliseconds) value.

Read More

Windows Phone 7 – Hello World Application

Hi, Today i have done with the downloading of tools/resources which are required to start with windows phone 7 development. I was really very much excited to start with windows phone 7 programming and waiting for downloading to complete. Once it is completed, as usual i tried to run “Hello world” based on the button […]

Read More

Android – Some AndroidManifest.xml attributes and tags to take care about

If you are about to launch application in android market or developing android application then this post is for you to take care about some AndroidManifest.xml attributes value to set inside the AndroidManifest.xml file: android:versionCode android:versionName android:icon android:label android:debuggable android:installLocation supports-screens uses-sdk uses-permission uses-library 1. android:versionCode: It ensures incremental numerical version of your application. such […]

Read More