1.UI主要控件分为
1. TextVIEw 用于字体显示
2.ImageVIEw 用于图片显示
3.EditText 用于文本输入显示
4.button 用于按钮
属性说明:
androID:background="@mipmap/bg" 用于设置背景
androID:gravity="center_horizontal" 用于设置属性的位置
androID:layout_margintop="70dp" 用于表示与相邻控件的上边距距离
androID:visible 用于设置当前的控件是否可见
<?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" androID:orIEntation="vertical" androID:background="@mipmap/bg" tools:context=".MainActivity" androID:gravity="center_horizontal"> <TextVIEw androID:layout_wIDth="wrap_content" androID:layout_height="wrap_content" androID:text="Sign up" androID:layout_margintop="70dp" androID:visibility="invisible"/> <TextVIEw androID:layout_wIDth="wrap_content" androID:layout_height="wrap_content" androID:text="Imooc Imooc Imooc Imooc\n Imooc Imooc" androID:layout_margin="20dp" androID:gravity="center_horizontal"/> <ImageVIEw androID:layout_wIDth="wrap_content" androID:layout_height="wrap_content" androID:src="@mipmap/add_photo" androID:layout_margin="10dp"/> <EditText androID:layout_wIDth="match_parent" androID:layout_height="wrap_content" androID:layout_marginleft="30dp" androID:layout_marginRight="30dp" androID:layout_margintop="40dp" /> <EditText androID:layout_wIDth="match_parent" androID:layout_height="wrap_content" androID:layout_marginleft="30dp" androID:layout_marginRight="30dp" androID:layout_margintop="40dp" /> <EditText androID:layout_wIDth="match_parent" androID:layout_height="wrap_content" androID:layout_marginleft="30dp" androID:layout_marginRight="30dp" androID:layout_margintop="40dp" /> <EditText androID:layout_wIDth="match_parent" androID:layout_height="wrap_content" androID:layout_marginleft="30dp" androID:layout_marginRight="30dp" androID:layout_margintop="40dp" /> <button androID:layout_wIDth="match_parent" androID:layout_height="wrap_content" androID:layout_marginleft="30dp" androID:layout_margintop="20dp" androID:layout_marginRight="30dp" androID:background="@mipmap/btn" androID:text="Register" app:backgroundTint="@color/teal_700" /></linearLayout>
@H_301_23@
总结以上是内存溢出为你收集整理的Android基础-UI控件(整体简单介绍)全部内容,希望文章能够帮你解决Android基础-UI控件(整体简单介绍)所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)