35
Layout Android Training By Khaled Anaqwa

Android Training (Android UI)

Embed Size (px)

DESCRIPTION

Android training (Android UI)

Citation preview

Page 1: Android Training (Android UI)

LayoutAndroid Training

By Khaled Anaqwa

Page 2: Android Training (Android UI)

As if a device can function if it has no style. As if a device can be called stylish that does not function superbly.... Yes, beauty matters. Boy, does it matter. It is not surface, it is not an extra, it is the thing itself. —STEPHEN FRY, THE GUARDIAN (OCTOBER 27, 2007)

Page 3: Android Training (Android UI)

User Interface All user interface elements in an Android app

are built using View and ViewGroup objects. A View is an object that draws something on

the screen that the user can interact with. A ViewGroup is an object that holds other

View (and ViewGroup) objects in order to define the layout of the interface.

The user interface for each component of your app is defined using a hierarchy of View and ViewGroup objects.

Page 4: Android Training (Android UI)

This hierarchy tree can be as simple or complex as you need it to be.

Page 5: Android Training (Android UI)

Layouts A layout defines the visual structure for a

user interface, such as the UI for an activity or app widget. You can declare a layout in two ways:

Declare UI elements in XML. Instantiate layout elements at runtime

The Android framework gives you the flexibility to use either or both .

The advantage to declaring your UI in XML is that it enables you to better separate the presentation from the code that controls its behavior.

Page 6: Android Training (Android UI)

Using Eclipse to Design Layout Resources Use the Outline pane to Add and

Remove controls to your layout resource.

Select a specific control (either in the Preview or the Outline) and use the Property pane to adjust a specific control’s attributes.

Use the XML tab to edit the XML definition directly.

Page 7: Android Training (Android UI)

Write the XML Each layout file must contain exactly

one root element. XML vocabulary for declaring UI

elements closely follows the structure and naming of the classes and methods.

For example, the EditText element has a text attribute that corresponds to EditText.setText().

Page 8: Android Training (Android UI)

Attributes Overview Every View and ViewGroup object supports

their own variety of XML attributes. Some attributes are specific (e.g. TextView

supports the textSize attribute) These attributes are also inherited by any

View objects that may extend this class. Some are common to all View objects,

because they are inherited from the root View class (like the id attribute).

Page 9: Android Training (Android UI)

Attributes Examples ID (Any View object may have an integer ID

associated with it, to uniquely identify the View within the tree.) android:id="@+id/my_button” The at-symbol (@) at the beginning of the string

indicates that the XML parser should parse and expand the rest of the ID string and identify it as an ID resource.

The plus-symbol (+) means that this is a new resource name that must be created and added to our resources (in the R.java file)

android:id="@android:id/empty” (from android.R)

Page 10: Android Training (Android UI)

Demo Create View in xml Create the same view in code

Page 11: Android Training (Android UI)

Question?

If I Instantiate view at runtime how I can assign ID to it ?

Page 12: Android Training (Android UI)

Attributes Examples Layout Parameters (XML layout attributes

named layout_something ) for the View that are appropriate for the

ViewGroup in which it resides. All view groups include a width and height

(layout_width and layout_height), and each view is required to define them. wrap_content tells your view to size itself to the

dimensions required by its content fill_parent (renamed match_parent in API Level 8)

tells your view to become as big as its parent view group will allow.

Page 13: Android Training (Android UI)
Page 14: Android Training (Android UI)

Every LayoutParams subclass has its own syntax for setting values. Each child element must define LayoutParams that are appropriate for its parent, though it may also define different LayoutParams for its own children.

Page 15: Android Training (Android UI)

Note (not Galaxy Note) specifying a layout width and height

using absolute units such as pixels is not recommended. Instead, using relative measurements such as density-independent pixel units (dp), wrap_content, or fill_parent, is a better approach, because it helps ensure that your application will display properly across a variety of device screen sizes.

Page 16: Android Training (Android UI)

Demo !! XML Code

Page 17: Android Training (Android UI)

Try !!! Create XML layout that uses a vertical

LinearLayout to hold a TextView and a Button

TextView id = text Text= “Hello, I am a TextView”

Button id=button text="Hello, I am a Button"

Page 18: Android Training (Android UI)

Attributes Examples Size, Padding and Margins

The accepted measurement types:Px, dp(Density-independent Pixels), sp(Scale-independent Pixels), pt, in, mm.

We can define it in Dimension Values.

Page 19: Android Training (Android UI)

Note Although you can nest one or more

layouts within another layout to achieve your UI design, you should strive to keep your layout hierarchy as shallow as possible.

Your layout draws faster if it has fewer nested layouts (a wide view hierarchy is better than a deep view hierarchy).Why?

Page 20: Android Training (Android UI)
Page 21: Android Training (Android UI)

As you can see, the code can rapidly grow in size as more controls are added to the screen, making screen contents more difficult to maintain or reuse.

Page 22: Android Training (Android UI)

Exploring Various Layout Types

Page 23: Android Training (Android UI)

FrameLayout designed to display a stack of child View

controls. This can be used to show multiple

controls within the same screen space

Page 24: Android Training (Android UI)

LinearLayout designed to display child View controls in

a single row or column.(Orientation= vertically or horizontally.)

This is a very handy layout method for creating forms.

Page 25: Android Training (Android UI)

Note To create a linear layout in which each

child uses the same amount of space on the screen,

set the android:layout_height of each view to "0dp" (for a vertical layout)

or the android:layout_width of each view to "0dp" (for a horizontal layout).

Then set the android:layout_weight of each view to "1".

Page 26: Android Training (Android UI)

Try to make it !!

Page 27: Android Training (Android UI)

Hint if there are three text fields and two of them

declare a weight of 1, while the other is given no weight, the third text field without weight will not grow and will only occupy the area required by its content. The other two will expand equally to fill the space remaining after all three fields are measured.

If the third field is then given a weight of 2 (instead of 0), then it is now declared more important than both the others, so it gets half the total remaining space, while the first two share the rest equally.

Page 28: Android Training (Android UI)

RelativeLayout designed to display child View controls in

relation to each other. You can also align child View controls

relative to the parent edges. Is a very powerful utility for designing a

user interface because it can eliminate nested view groups and keep your layout hierarchy flat, which improves performance.

Page 29: Android Training (Android UI)

Positioning Views android:layout_alignParentTopIf "true", makes the top edge of this view match the top edge of the parent. android:layout_centerVerticalIf "true", centers this child vertically within its parent. android:layout_belowPositions the top edge of this view below the view specified with a resource ID. android:layout_toRightOfPositions the left edge of this view to the right of the view specified with a resource ID.

Page 30: Android Training (Android UI)

Try To make it !!

Page 31: Android Training (Android UI)

TableLayout designed to organize child View controls

into rows and columns. designed to organize child View controls

into rows and columns.

Page 32: Android Training (Android UI)

Create From First Name Second Name Job Email Submit OnClick (Print All of them)

Page 33: Android Training (Android UI)

Combining Layouts This means that layout controls can be

nested

Page 34: Android Training (Android UI)

Event Listeners onClick() onLongClick() onFocusChange() onTouch() onKey()

Page 35: Android Training (Android UI)

How to Handle Listeners Implement My Listener Let Class Implement it