美文网首页
界面布局编辑基本语法

界面布局编辑基本语法

作者: 四月八日君尋 | 来源:发表于2020-02-22 15:21 被阅读0次

    注意在androidX中已经过期,包括v4,v7库,as3.x新项目强制使用androidX,以下语法仅供参考,请不要复制代码测试,你将会看到整段黄色提示,打包在虚拟机上运行会报错

    <?xml version="1.0" encoding="utf-8"?>
    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"  //页面开始
        android:orientation="vertical"//页面布局方向:垂直
        android:layout_width="match_parent"//页面宽,匹配父级
        android:layout_height="match_parent">
    
        <Button//定义按键元素
            android:id="@+id/button_1"//定义按键id(@+id/id_name,如果是引用id:@id/id_name)
            android:layout_width="match_parent"
            android:layout_height="wrap_content"//按键高,包裹内容
            android:text="Button 1"
            />
    
    </LinearLayout>//页面结束
    
    

    相关文章

      网友评论

          本文标题:界面布局编辑基本语法

          本文链接:https://www.haomeiwen.com/subject/viacqhtx.html