Android-XML layout and CSS

Source: Internet
Author: User
Everyone who has developed Android applications knows that the android project-res-layout resource folder stores XML files that control the view layout. We can use the getviewbyid (int I) method, construct the view and its subclass from XML. In this process, all layout attributes in the XML file will also be assigned to this view. Of course, we can also Code To set layout for a view. By analyzing and comparing the centralized layout, I found that the absolute positioning of absolutelayout in Android is similar to that of CSS. tablelayout is similar to that of HTML tables, while relativelayout is similar to CSS. The first two are already commonplace. I will focus on comparing the last pair, that is, the relative position: relative between relativelayout and CSS ). First look at an XML section: <? XML version = "1.0" encoding = "UTF-8" ?>
< Relativelayout
Xmlns: Android = "Http://schemas.android.com/apk/res/android"
Android: layout_width = "Fill_parent" Android: layout_height = "Fill_parent"
Android: Orientation = "Vertical" >
< Radiogroup Android: ID = "@ + ID/radiogroup"
Android: layout_width = "Fill_parent" Android: layout_height = "167px"
Xmlns: Android = "Http://schemas.android.com/apk/res/android"
Android: Orientation = "Vertical" >
< Radiobutton Android: ID = "@ + ID/Queen"
Android: layout_width = "Wrap_content"
Android: layout_height = "Wrap_content" Android: Text = "@ String/Queen" >
</ Radiobutton >
< Radiobutton Android: ID = "@ + ID/rook"
Android: layout_width = "Wrap_content"
Android: layout_height = "Wrap_content" Android: Text = "@ String/rook" >
</ Radiobutton >
< Radiobutton Android: ID = "@ + ID/Knight"
Android: layout_width = "Wrap_content"
Android: layout_height = "Wrap_content" Android: Text = "@ String/Knight" >
</ Radiobutton >
< Radiobutton Android: ID = "@ + ID/Bishop"
Android: layout_width = "Wrap_content"
Android: layout_height = "Wrap_content" Android: Text = "@ String/Bishop" >
</ Radiobutton >
</ Radiogroup >
< Button Android: ID = "@ + ID/promotion"
Android: layout_width = "Wrap_content"
Android: layout_height = "Wrap_content" Android: layout_below = "@ ID/radiogroup"
Android: Text = "@ String/promote"   />
</ Relativelayout >

In the preceding XML section, this is the XML layout of custom Dialog (custom dialog box) that I wrote for an "baseline line of soldiers" in the android chess game. Here we briefly define some locations and appearances of several controls (from the Android. wedget package. As you can see, the root node relativelayout tells us that this is a relatively positioned layout, and then a radiogroup (containing four radiobutton) and a button from top to bottom. The following Android: layout_below attribute tells the button to be rendered under the radiogroup.

This is a very simple attribute. There are many attributes in relativelayout, as shown in the table below.

Android: layout_abve Positions the bottom edge of this view abve the given anchor view ID.
Android: layout_alignbaseline Positions the baseline of this view on the baseline of the given anchor view ID.
Android: layout_alignbottom Makes the bottom edge of this view match the bottom edge of the given anchor view ID.
Android: layout_alignleft Makes the left edge of this view match the left edge of the given anchor view ID.
Android: layout_alignparentbottom F true, makes the bottom edge of this view match the bottom edge of the parent.
Android: layout_alignparentleft If true, makes the left edge of this view match the left edge of the parent.
Android: layout_alignparentright If true, makes the right edge of this view match the right edge of the parent.
Android: layout_alignparenttop If true, makes the top edge of this view match the top edge of the parent.
Android: layout_alignright Makes the right edge of this view match the right edge of the given anchor view ID.
Android: layout_aligntop Makes the top edge of this view match the top edge of the given anchor view ID.
Android: layout_below Positions the top edge of this view below the given anchor view ID.
Android: layout_centerhorizontal If true, centers this child horizontally within its parent.
Android: layout_centerinparent If true, centers this child horizontally and vertically within its parent.
Android: layout_centervertical If true, centers this child vertically within its parent.
Android: layout_toleft Positions the right edge of this view to the left of the given anchor view ID.
Android: layout_toright Positions the left edge of this view to the right of the given anchor view ID.

I believe everyone's English skills. I will not translate what I copied from the API. However, you can see that as long as you set the above attributes (not all of them), we can easily define the display behavior of a control (View) under relative positioning. At the same time, relativelayout is inherited from layout, so many layout attributes can also be used here, including: Android: layout_height, Android: layout_width,

Android: layout_marginbottom, Android: layout_marginleft, Android: layout_marginright, Android: layout_margintop.

This is reminiscent of the popular method of positioning elements in HTML-Div + float. In CSS, if we want to control the display of an element (usually a div, the padding attribute (padding-top, padding-right, padding-bottom, and padding-left) is required) and border attributes (border-top-width, border-right-width, border-bottom-width, border-left-width, border-width, border-color, border-style, border-top, border-right, border-bottom, border-left, width, height, float, clear ). CSS does not define many alignxxx and alignparentxxx in Android, but they can display beautiful webpages like float and clear ).

Similarly, the layered structure of XML is similar to the nested <div> </div> of HTML. The separation of layout from code is the same as that of CSS external style sheets. It is said that WPF also uses external XML files to control the UI, which seems to be inspired.

In addition, the layout of Android has a good match with the layout of swing, but my j2se is poor in learning. I will analyze and compare it after I study it.

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.