欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Android studio 001 LinerLayout

程序员文章站 2022-05-31 11:50:25
...
# -*- coding: utf-8 -*-
"""
Created on Wed Feb 13 12:52:17 2019
QQ群:476842922(欢迎加群讨论学习)
@author: Administrator
"""
<?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"
    tools:context=".MainActivity">

    <Button
        android:id="@+id/button2"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Button"
        tools:layout_editor_absoluteX="65dp"
        tools:layout_editor_absoluteY="320dp" />
</LinearLayout>

android:id 标识符
layout 布局
margin 外边距
padding 设置所有内边距属性
orientation 方向

Android studio 001 LinerLayout