Android怎么让LinearLayout的两个按钮之间存在一些间隔

Android怎么让LinearLayout的两个按钮之间存在一些间隔,第1张

可以按照以下代码进行尝试:

<?xml version="1.0" encoding="utf-8"?>

<LinearLayout

xmlns:android="http://schemas.android.com/apk/res/android"

android:layout_width="fill_parent"

android:layout_height="wrap_content"

android:orientation="vertical"

android:padding="10dp"

>

<Button

android:id="@+id/btnAction1"

android:layout_width="fill_parent"

android:layout_height="wrap_content"

android:background="@drawable/cool_button"

android:text = "HiText1"

/>

<Button android:layout_marginTop="50dp"

android:id="@+id/btnAction2"

android:layout_width="fill_parent"

android:layout_height="wrap_content"

android:background="@drawable/cool_button"

android:text="HiText2"

android:layout_below="@id/btnAction1"

/>     

</LinearLayout>

扩展资料

若设置一个控件为android:graviity="center|top" 那么这个控件中的子控件位于该控件的中心位置靠上的部位。

若设置一个控件为android:layout_gravity="center|top" 那么这个控件位于他父控件的中心位置靠近上的部位,是对这个控件本身位置的 *** 作。

android:layout_marginBottom:离某元素底边缘的距离

android:layout_marginLeft:离某元素左边缘的距离

android:layout_marginRight:离某元素右边缘的距离

android:layout_marginTop:离某元素上边缘的距离

1.选定全文——格式——段落——缩进和间距(选项卡)——“行距”下拉菜单中选择行距(也可选择固定“固定值”,在右边的“设置值”中填入数值)——确定。

2.将“行距”下面的“段前”、“段后”后面的值都设为“0”——确定。

3.将文中所有文字全部剪切——编辑——选择性粘贴——无格式文本——确定——按新文档重新编辑。

控件之间的间距有两种设置:

android:layout_margin="10dp" 外边距

android:padding="10dp" 内边距

有五个属性控制控件的间距,分别是

android:layout_marginLeft

android:layout_marginRight

android:layout_marginTop

android:layout_marginBottom

android:layout_margin

可以控制控件之间的距离,分别是左间距,右间距,上间距,下间距,和四边统一间距

android:layout_marginTop="25dip" //顶部距离 就这样写代码

福建蜂鸟云商为你解答


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/tougao/11219949.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-14
下一篇 2023-05-14

发表评论

登录后才能评论

评论列表(0条)

保存