Android Studio菜鸟开发————LinearLayout线性布局

在content_main.xml中可以这样写:
xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    app:layout_behavior="@string/appbar_scrolling_view_behavior"
    tools:context="com.example.a1.myfirstp.MainActivity"
    tools:showIn="@layout/activity_main"
    android:orientation="vertical"
    >

LinearLayout>
android:layout_width="match_parent"   表示宽的属性为match_parent(匹配父控件),还可以设置为wrap_content(包含内容)

android:layout_height="match_parent" 高的属性

android:orientation="vertical"    orientation表示排列方式,vertical表示垂直排列,也可以用horizontal水平排列
可以嵌套线性布局:

线性布局中的控件可以使用android:layout_weight属性,表示将父控件的剩余空间按比例分配;

如第一个控件的weight值为1,第二个为1;表示将父控件的剩余空间按1:1分配(不包括控件text内容的大小)

第一个值为2,第二个值为1,表示按2:1分配,以此类推;





你可能感兴趣的:(Android)