Monday, March 4, 2013

Dresscodefinder Android Application for United States Hotel

Dresscodefinder Android Application

The application helps to find the dress code of specific hotels in United States. If you like to search the hotels Dress Code download this android application to your smart phone.

Step1: Download the Dresscodefinder Android App for all Cities in United States.

Step2: You need to download the application or copy the file to your mobile.

step3: Since the application is not there in Android Market, you need to mobile phone: Settings -> Applications -> select the Unknown sources

step4: Double click the dowloaded file in mobile and install.

step5: In your application window you will get logo for the application and it will direct you to the respective screen and sites when you click on the tabs, but you need to have internet connection in Mobile.



Design:




Multiple Record JSON Response handling with AppInventor:

Saturday, March 2, 2013

Currency Converter Android application

Free Download Currency Converter Android application

Step1: Download the Currency Convertor Android App for almost all the currencies from here.

Step2: You need to download the application or copy the file to your mobile.

step3: Since the application is not there in Android Market, you need to mobile phone: Settings -> Applications -> select the Unknown sources

step4: Double click the dowloaded file in mobile and install.

step5: In your application window you will get logo for the application and it will direct you to the respective screen and sites when you click on the tabs, but you need to have internet connection in Mobile

Friday, March 1, 2013

Android application development without Coding


Android application development become very popular today.Android platform today has built outstanding careers in technology innovation and application development . The platform virtually creates superstar developers who can think differently and who can build small applications quickly. Since it's open source, the scope to learn and work is infinite. The platform has the backing of innovation giant Google. For a software developer with excellent depth in algorithms, who can think out of the box, Android will be the best thing to happen.
There are tool and IDE available online to support the Android application  development without knowing coding. You don't require to be a programmer to 
build Android application now.


App Inventor aims at the non-developer user base who are assumed to want to build something but don’t want to/are afraid of code.This is the same user base that mashup builders, HTML editors and countless tools have addressed, with mixed results.It also aims at the Android beginner segment, made up of people new to development or new to Android.

The appinventor tutorial can be get from the following link:http://beta.appinventor.mit.edu/learn/tutorials/ 


2.iBuildApp

Create your own iPhone/iPad App without any coding. Application like ebook, Bar&Restaurant ,  Music,Small Business etc can build very easily.
Tutorial can be found in the following link :http://ibuildapp.com/how-to-build-an-iphone-app-in-5-min-tutorial/http://ibuildapp.com/how-to-build-an-iphone-app-in-5-min-tutorial/

3. Conduit mobile

Conduit is an online platform that allows web publishers to create custom toolbars, web apps, and mobile apps at no cost.Web apps and pieces of content developed through Conduit's platform can be distributed and exchanged online via the Conduit App Marketplace. The basic tutorial can be found in the following path: http://mobile.conduit.com/#/How-to-Create-Mobile-Apps.aspx
Android is a Linux-based operating system designed primarily for touchscreen mobile devices such as smartphones and tablet computers. Initially developed by Android, Inc., which Google backed financially and later purchased in 2005, Android was unveiled in 2007 along with the founding of the Open Handset Alliance: a consortium of hardware, software, and telecommunication companies devoted to advancing open standards for mobile devices.

Android has a growing selection of third party applications, which can be acquired by users either through an app store such as Google Play or the Amazon Appstore, or by downloading and installing the application's APK file from a third-party site.The Play Store application allows users to browse, download and update apps published by Google and third-party developers, and is pre-installed on devices that comply with Google's compatibility requirements.

The open and customizable nature of Android allows it to be used on other electronics, including laptops and netbooks, smartbooks,smart TVs (Google TV) and cameras (Nikon Coolpix S800c and Galaxy Camera).In addition, the Android operating system has seen applications on smart glasses (Project Glass), wristwatches,headphones,car CD and DVD players,mirrors,portable media players and landlines and Voice over IP phones.

Thursday, February 28, 2013

Taxime taxi fare Android Application

Download Taxime Android Application

The Application helps you find out taxi fare in different cities of Canada and America. All you need to enter is the city and code .

Step1: Download the Taxime taxi fare Android App for Canada and America from here.

Step2: You need to download the application or copy the file to your mobile.
step3: Since the application is not there in Android Market, you need to mobile phone: Settings -> Applications -> select the Unknown sources
step4: Double click the dowloaded file in mobile and install.
step5: In your application window you will get logo for the application and it will direct you to the respective screen and sites when you click on the tabs, but you need to have internet connection in Mobile

Android Application to get Pincode from Place

Download the Android application for Pincode Search

Step1: Download the Pincode Search Android App in India from here.

Step2: You need to download the application or copy the file to your mobile.

step3: Since the application is not there in Android Market, you need to mobile phone: Settings -> Applications -> select the Unknown sources

step4: Double click the dowloaded file in mobile and install

step5: In your application window you will get logo for the application and it will direct you to the respective screen and sites when you click on the tabs, but you need to have internet connection in Mobile

Design
The pincode API can be get from www.getpincode.info , the components are attached to the Screen1 which include a Web component,Place search text box and search button. Activity starter is used for the button like Índia Post' and Speed Post to connect to internet.


Android AppInventor JSON response parsing

The Web component can be used to connect and get the response which is in JSON format. Once the Url has been set in text , the web1.get can be called to receive the JSON response.


Appinventor Web.GotText
The response content needs to be passed to a procedurewithResult( can be created from the definition block. Procedure which returns a value). The procedure has been defined with four parameters jsonresponse, starttag,endtag and decodeHTMLText. The procedure is called with responsecontent,"pincode", "," and true.


App Inventor Procedure to parse JSON response

The created temporary variable can be assigned with response , but we need to parse it based on the instruction given in www.getpincode.info . using startTag we can split the response into two pieces in that we need to again split the data again with endTag. If there is any html code , we need to decode it that as well.