I am wondering if i could implement setting activity in my own application just looking like the Built-in Setting application in android 3.1.
as you know Built-in Setting application looks like:

What concepts and classes i will need to accomplish my own activity same like this default one.
For example i need some options on the left side, on clicking each option on left i could pick up/see its values on right side..
My desired activity look like this:

Please explain the layout design in general (and in brief if possible). Any tutorials, any documentation or relavent example will be highly helpfull..
What you are looking for, are Fragments.
Fragments can be used to fill a part of the screen, while doing something else entirely in a different one.
In your example you can create a main activity that contains two
Fragments. OneFragmentcontrols the list on the left, the other one controls the main content area for your options.By replacing the current
Fragmentin your content area with a different one on the press of a button, you can achieve the behavior you are looking for.For the options menu, it looks like a PreferenceFragment.
Sadly I can’t provide any example code right now, but here is a tutorialthat should help you get started: