XML layout files store layout files in xml format in the folder res/layout. The layout methods are mainly LinearLayout (linear layout), TableLayout (table layout), RelativeLayout (relative layout), and of course AbsoluteLayout, (absolute layout) , FrameLayout (frame layout), etc. They can also be nested to achieve better interface effects. I have sorted out the commonly used attributes according to my personal understanding. It may not be scientific, but I think it is very practical. The control is the whole: android:id
Introduction: Layout files in xml format are stored in the folder res/layout. The layout methods are mainly LinearLayout (linear layout), TableLayout (table layout), RelativeLayout (relative layout), and of course AbsoluteLayout. , (absolute layout), FrameLayout (frame layout), etc. They can also be nested to achieve better interface effects. I have sorted out the commonly used attributes according to my personal understanding. It may not be scientific, but I think it is very practical.
2.Detailed explanation of the sample code used in Android XML files
##Introduction: We can define two or more sets of layouts for the application. For example, you can create a new directory layout_land (representing the horizontal screen layout of the mobile phone) and layout_port (representing the vertical screen layout of the mobile phone). The system will automatically find the best layout according to different situations. Appropriate layout files, but the file names of two sets of different layout files on the same interface should be the same, just placed in two different directories. 3.
Android UI control series: Tab Layout
Introduction: In order to create a tab UI, you need to use a TabHost and a TabWidget. TabHost must be the root node of the layout file, which contains the TabWidget for displaying tabs and a FrameLayout that displays option content4.
Android UI control series: ImageButton (button with icon)
Introduction: To make a button with an icon, you must first define the ImageButton in the layout file, and then set the icon to be displayed through the setImageDrawable method. 5.
Yii2 uses the five-module layout fileIntroduction:: This article mainly introduces the use of the five-module layout file in Yii2 Module layout file, students who are interested in PHP tutorials can refer to it.
6.
Detailed explanation of Layout (modular layout) in zend Framework_PHP tutorial
Introduction: zend Detailed explanation of Layout (modular layout) in Framework. 1. First modify the application configuration file resources.layout.layoutPath = APPLICATION_PATH "/layouts/scripts" to specify the location of the layout file 2. Then the easiest way is to modify the boot file##7.
Laravel 5 framework learning Blade introduction, laravelblade_PHP tutorialIntroduction: Laravel 5 framework learning Blade introduction, laravelblade. Laravel 5 Framework Learning - Blade Introduction, laravelblade We may include the same content in multiple pages, such as file headers, linked css or js, etc. We can use the layout file to complete
[Related Q&A recommendations]:
android - After the Android Toolbar slides to hide, the color becomes all white
android - layout_above does not work in RelativeLayout layout
android How to dynamically load images into the layout file setting location?
java - How to use Android public library (is library)
The above is the detailed content of How to use layout files? Summarize the usage of layout file examples. For more information, please follow other related articles on the PHP Chinese website!