Using ksoap2 for android, and parsing output data

SDK Version: 
M3

So the other day, I was asked to check out how we could use soap on Android, preferably with ksoap2 for android, and a public SOAP Web Service. For the latter the TopGoalScorers web service was chosen.

Android Device Catalog Released On The Market

Interested in Android powered devices? Android Device Catalog from HelloAndroid.com will keep you updated with all the latest information on Android powered phones and tablets. The application is based on the data in our Device Catalog. The application is available as a free download.

* Phone and Tablet Gallery
* Detailed device information
* Detailed search
* On-Line <- means always fresh

As the data comes from HelloAndroid.com, it needs Internet connection at the first start.


       

Android Device Catalog opened on HelloAndroid.com

Today we have opened the Android Device Catalog on our beloved HelloAndroid.com.

This new section deals with present and planned phones and tablets available with Android operating system. We have collected all the information we could to present you the most comprehensive Android Device Database on-line. We will continuously update the database, add new content and update the existing devices with new information.

Parallel to this we have released our new baby on the Android Marketplace called - what a surprise - Android Device Catalog. This application is a native client for the Device Catalog and available as a free download.

Special Android devices in Android Device Catalog

In our last project(Android Mobile Catalog) i spent a lot of time reading about Android devices. There was some really interesting sfuff.
For exaple there is HardKernel ODROID-T.

The shape of this device is weird, but I get a very great first impression.

Is this the first run?

SDK Version: 
M3

Ever wanted to have a different flow of actions on the second or third run of your app? I had that many times, in almost every project that I haver worked on. So here is a little snippet, that you can use to store, and check the fact, if this is the first run of your app. You can modify it easily, to suit your needs.

5 Minutes Break released for free to the Android Marketplace

Move Your body, Move Your app!

We have released 5 Minutes Break to the Android Marketplace. The application is available for free for all devices with Android OS version 1.6 and above.

This application finished on the 4th place in the official contest and 2nd in community ratings on the Snaptic Move Your App competition.

The contest continues. The new goal is to get the most downloads within 90 days. We are already some days behind so I hope many of you will like our app and give it a try.

Android 2.1 Eclair for T-mobile Pulse


If you haven't heard about Pulse yet, go to http://en.wikipedia.org/wiki/T-Mobile_Pulse
You may also want to check its little brother:
Pulse mini - http://phandroid.com/2010/02/16/t-mobile-pulse-mini-announced-for-europe...

How to send email from your application

SDK Version: 
M3

Today we'll create an easy email sender application.
First of all we need to create a layout to set the address, the subject and email body box.

  1. <?xml version="1.0" encoding="utf-8"?><LinearLayout android:id="@
  2.  
  3. +id/LinearLayout01" android:layout_width="fill_parent"
  4.  
  5. android:layout_height="fill_parent"
  6.  
  7. xmlns:android="http://schemas.android.com/apk/res/android"
  8.  
  9. android:orientation="vertical"><LinearLayout android:id="@+id/LinearLayout02"
  10.  
  11. android:layout_width="wrap_content" android:layout_height="wrap_content"
  12.  
  13. android:orientation="horizontal"><EditText android:layout_width="wrap_content"
  14.  
  15. android:layout_height="wrap_content" android:width="170dip" android:id="@
  16.  
  17. +id/emailaddress"></EditText><TextView android:layout_width="wrap_content"
  18.  
  19. android:layout_height="wrap_content" android:id="@+id/emailaddress"
  20.  
  21. android:text="Email address"></TextView>
  22. </LinearLayout>
  23.  
  24.  
  25. <LinearLayout android:id="@+id/LinearLayout03"

'Move Your App' Challenge Results - Celebrating 5 Minutes Break

The winners of the Move Your App Challenge have been announced.

The winners of the contest are the following apps:

1st: Pick Up Sport
2nd: Dr. Detective
3rd: Wagz
4th: 5 Minutes Break / WalkArt

Community rating:

1st: Runners
2nd: 5 Minutes Break
3th: WalkSquare
4th: WalkArt / Wagz

5 Minutes Break is 4th by the judgement of the jury and 2nd by the judgemet of the community. 5 Minutes Break will be available on the Android Marketplace in the next days.

We are very happy with this result and we would like to thank You for all Your support and a big congratz to all the developers who registered and to Snaptic for organizing such a great event. We wish you could be with us enjoying this big and tasty cake.

Before:

After:

How to play video and audio on Android Part 2.

SDK Version: 
M3

In this part, I'm going to focus on MediaPlayer. I'm going to show you, how to stop it properly, and how to create a media player more easily.
The default behavior is the same, with every activity, after onPause and onStop, if the activity is not destroyed, it will continue to run in the background, until it is killed so the system can free up the memory it is using. So until the activity is destroyed, the mediaplayer will continue to occupy space in the phones memory.

Syndicate content