注意在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>//页面结束
网友评论