Android各控件常用属性

android:id="@+id/";各控件的名字

android:layout_width="";设置控件的宽度

android:layout_height="";设置控件的高度

android:layout_weight="";按比例划分空间

android:background="";设置控件的背景色,也可添加图片

android:text="";设置控件的字体

android:textSize;设置字体大小

android:grivate="";设置控件里文本的对齐方式

android:layout_grivate="";设置这个控件所处的容器里的位置

android:hint="";用于edittext中的提示信息

LinearLayout中vertical表示垂直布局,horizontal表示水平布局

控制控件位置https://blog.csdn.net/chdyiboke/article/details/51833821

你可能感兴趣的:(Android各控件常用属性)