Android

TwitterFacebook
Get flash to fully experience Pearltrees
http://mobiforge.com/designing/story/understanding-user-interface-android-part-1-layouts

Understanding User Interface in Android - Part 1: Layouts

Posted by weimenglee 3 years 39 weeks ago So far in my previous few articles on Android I have focused on showing you how to get things done in Android without really spending too much time discussing the visual aspect of Android application development - User Interface design. In this article, and the next, I will walk you through the various elements that make up the UI of an Android application. In this first part of the article, I will discuss the various layouts available in Android to position the various widgets on your screen. Android Screen UI Components Up to this point, you have seen that the basic unit of an Android application is an Activity .

Android Preferences

http://android-journey.blogspot.com/2010/01/for-almost-any-application-we-need-to.html For almost any application we need to provide some settings in order to enable users have some level of control over how the application works. Android has provided a standard mechanism to show, save and manipulate user's preferences. PreferenceActivity class is the standard Android Activity to show Preferences page, it contains a bunch of Preference class instances which use SharedPreference class to save and manipulate corresponding data.There are different types of Preferences Available in Preference package, and if you need something more you can extend Preference class and create your own Preference type. in this article we will go through predefined Preference types in Android and I'm also going to implement a custom Preference type to see how that works. Our Preferences page is gonna look like this :

Android Development Tutorial - Gingerbread

http://www.vogella.com/articles/Android/article.html 1.1. Android Operation System Android is an operating system based on Linux with a Java programming interface. The Android Software Development Kit (Android SDK) provides all necessary tools to develop Android applications. This includes a compiler, debugger and a device emulator, as well as its own virtual machine to run Android programs.