Android控件放屏幕最下面有以下方式:
使用android:layout_height="match_parent"将控件设置为占满屏幕。
使用RelativeLayout包括控件,控件首扰旦中增加android:layout_alignParentBottom="true" 表示放在父控件的最下方。
使用android:layout_gravity="bottom" 指者扰定李芹当前控件的位置为bottom即可。
RelativeLayout相对布局,以某一个控件为基础,基于该控件的位置,通过id来确定其他控件的位置,所以说改变id后,同时需要改变基本属性的id值:android:layuot_below、android:layout_above、android:layout_toLeftOf和android:layout_toRightOf,他们会引用上述id,比轿芹如:
1、指定按钮1在输入框的下面
<Buttonandroid:layout_width="闭卜毕wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/edt1"
/>
这个时候,改变edt1的值,会弊樱同时改变按钮1位置
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)