gpt4 book ai didi

android - 水平线填充

转载 作者:太空狗 更新时间:2023-10-29 15:57:01 24 4
gpt4 key购买 nike

我试图在两个 EditText 小部件之间添加一条水平线,但奇怪的是这条线底部没有填充,所以它看起来“粘”在它下面的小部件上。

这是我的代码(在 layout.xml 中,在垂直方向的 LinearLayout 中):

    <EditText android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:capitalize="sentences"
android:singleLine="true"
android:maxLength="30" />
<View android:background="#FF00FF00"
android:layout_width="fill_parent"
android:layout_height="1dip" />
<EditText android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:paddingTop="10dp"
android:scrollbars="vertical"
android:capitalize="none"
android:autoLink="all"
android:maxLines="8" />

这是它的样子:

enter image description here

我想在该行下方添加一些填充。我尝试在 View 小部件中使用 android:paddingBottom,并在下面的 EditText 小部件中使用 android:paddingTop,但结果是一样的(它被忽略了)。

最佳答案

使用 ma​​rgin 代替填充。在 xml 中使用以下属性:

android:layout_marginTop="5dip"
android:layout_marginBottom="5dip"

希望这能解决您的问题...:)

关于android - 水平线填充,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5705781/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com