如何使用 xml 设置 EditText 的边距?

发布于 2024-11-18 09:07:12 字数 2032 浏览 2 评论 0原文

大家好,我已经使用以下代码创建了布局

  <?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    >
    <TableLayout android:layout_width="match_parent" android:id="@+id/tableLayout1" android:layout_height="wrap_content">
        <TableRow android:id="@+id/tableRow1" android:layout_width="wrap_content" android:layout_height="wrap_content">
            <TextView android:text="TextView" android:id="@+id/textView1" 
            android:layout_width="wrap_content" android:padding="10dip"


             android:layout_height="wrap_content"></TextView>
            <EditText android:layout_height="wrap_content"
            android:padding="12dip"  android:layout_width="wrap_content" android:text="EditText" android:id="@+id/editText1"></EditText>
        </TableRow>
    </TableLayout>
    <TableRow android:layout_width="match_parent" android:id="@+id/tableRow2" android:layout_height="wrap_content">
        <TextView android:text="TextView" android:layout_width="wrap_content" android:layout_height="wrap_content" android:id="@+id/textView2"></TextView>
        <EditText android:text="EditText" android:id="@+id/editText2" android:layout_width="wrap_content" android:layout_height="wrap_content"></EditText>
    </TableRow>
    <TableRow android:layout_width="match_parent" android:id="@+id/tableRow3" android:layout_height="wrap_content">
        <Button android:text="Button" android:id="@+id/button1" android:layout_width="wrap_content" android:layout_height="wrap_content"></Button>
        <Button android:text="Button" android:id="@+id/button2" android:layout_width="wrap_content" android:layout_height="wrap_content"></Button>
    </TableRow>
</LinearLayout>

,但现在我想设置边距。我如何使用 XML 来做到这一点?

Hi all I have created layout using following code

  <?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    >
    <TableLayout android:layout_width="match_parent" android:id="@+id/tableLayout1" android:layout_height="wrap_content">
        <TableRow android:id="@+id/tableRow1" android:layout_width="wrap_content" android:layout_height="wrap_content">
            <TextView android:text="TextView" android:id="@+id/textView1" 
            android:layout_width="wrap_content" android:padding="10dip"


             android:layout_height="wrap_content"></TextView>
            <EditText android:layout_height="wrap_content"
            android:padding="12dip"  android:layout_width="wrap_content" android:text="EditText" android:id="@+id/editText1"></EditText>
        </TableRow>
    </TableLayout>
    <TableRow android:layout_width="match_parent" android:id="@+id/tableRow2" android:layout_height="wrap_content">
        <TextView android:text="TextView" android:layout_width="wrap_content" android:layout_height="wrap_content" android:id="@+id/textView2"></TextView>
        <EditText android:text="EditText" android:id="@+id/editText2" android:layout_width="wrap_content" android:layout_height="wrap_content"></EditText>
    </TableRow>
    <TableRow android:layout_width="match_parent" android:id="@+id/tableRow3" android:layout_height="wrap_content">
        <Button android:text="Button" android:id="@+id/button1" android:layout_width="wrap_content" android:layout_height="wrap_content"></Button>
        <Button android:text="Button" android:id="@+id/button2" android:layout_width="wrap_content" android:layout_height="wrap_content"></Button>
    </TableRow>
</LinearLayout>

but now I want to set the margin. How can I do this using XML?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

时光清浅 2024-11-25 09:07:12

尝试对第二个左边距进行类似操作:

<EditText 
    android:id="@+id/editText1"
    android:layout_height="wrap_content"
    android:layout_width="wrap_content" 
    android:layout_marginLeft="15dp"
    android:padding="12dp"  
    android:text="EditText" > 
</EditText>

Try this for left margin the second one in similar:

<EditText 
    android:id="@+id/editText1"
    android:layout_height="wrap_content"
    android:layout_width="wrap_content" 
    android:layout_marginLeft="15dp"
    android:padding="12dp"  
    android:text="EditText" > 
</EditText>
王权女流氓 2024-11-25 09:07:12

请尝试使用 Right_margin

android:layout_marginRight = "15dip"

尝试使用左侧边距

android:layout_marginLeft = "15dip"

如果您在中心给出值,

android:gravity = "center_horizontal"

Try this for Right_margin

android:layout_marginRight = "15dip"

Try this for left margin

android:layout_marginLeft = "15dip"

if you give value in center

android:gravity = "center_horizontal"
煮茶煮酒煮时光 2024-11-25 09:07:12

Android 指南现在建议使用 marginStart 和 marginEnd 而不是 left 和 right,因此:

android:layout_marginStart = "15dp"

Android guidelines now suggest to use marginStart and marginEnd instead of left and right, so:

android:layout_marginStart = "15dp"
浅语花开 2024-11-25 09:07:12

如果您使用 android:drawableLeft 您必须使用

 android:drawablePadding="5dp"

If you are using android:drawableLeft you have to use

    android:drawablePadding="5dp"
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文