android中的布局问题

发布于 2024-10-12 06:09:09 字数 1344 浏览 5 评论 0原文

我尝试显示如图 1 所示的布局(textView 和 editText 在同一行中),但我的输出如图 2 所示! 我尝试使用此代码:

    <?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="wrap_content"
    android:padding="5px"
    >

    <TextView 
        android:id="@+id/label"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="URL:"
        android:layout_alignBaseline="@+id/entry"
        android:layout_alignParentLeft="true"/>
        />

    <EditText 
        android:id="@+id/entry"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_toRightOf="@id/label"
        android:layout_alignParentTop="true"
        />

    <Button 
        android:id="@+id/button" 
        android:layout_width="wrap_content"
        android:layout_height="wrap_content" 
        android:layout_gravity="center_horizontal"
        android:paddingRight="30px" 
        android:paddingLeft="30px" 
        android:text="Go..." 
        />

</LinearLayout>

请帮助我 谢谢

"image1"> image2

i try show layout like image 1 (textView and editText in same line) but my out put shown like image 2 !
i try with this 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="wrap_content"
    android:padding="5px"
    >

    <TextView 
        android:id="@+id/label"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="URL:"
        android:layout_alignBaseline="@+id/entry"
        android:layout_alignParentLeft="true"/>
        />

    <EditText 
        android:id="@+id/entry"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_toRightOf="@id/label"
        android:layout_alignParentTop="true"
        />

    <Button 
        android:id="@+id/button" 
        android:layout_width="wrap_content"
        android:layout_height="wrap_content" 
        android:layout_gravity="center_horizontal"
        android:paddingRight="30px" 
        android:paddingLeft="30px" 
        android:text="Go..." 
        />

</LinearLayout>

please help me
thanks

image1

image2

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

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

发布评论

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

评论(4

三生一梦 2024-10-19 06:09:09

试试这个

<LinearLayout 
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent" 
    android:layout_height="wrap_content"
    android:orientation="vertical">
<LinearLayout 
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent" 
    android:layout_height="wrap_content"
    android:orientation="horizontal">
<TextView 
    android:id="@+id/label"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="URL:"
    android:layout_alignBaseline="@+id/entry"
    android:layout_alignParentLeft="true"/>
    />
<EditText 
    android:id="@+id/entry"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:layout_toRightOf="@id/label"
    android:layout_alignParentTop="true"
    />
</LinearLayout>
<Button 
    android:id="@+id/button" 
    android:layout_width="wrap_content"
    android:layout_height="wrap_content" 
    android:layout_gravity="center_horizontal"
    android:paddingRight="30px" 
    android:paddingLeft="30px" 
    android:text="Go..." 
    />
</LinearLayout>

或者使用RelativeLayout

Try this

<LinearLayout 
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent" 
    android:layout_height="wrap_content"
    android:orientation="vertical">
<LinearLayout 
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent" 
    android:layout_height="wrap_content"
    android:orientation="horizontal">
<TextView 
    android:id="@+id/label"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="URL:"
    android:layout_alignBaseline="@+id/entry"
    android:layout_alignParentLeft="true"/>
    />
<EditText 
    android:id="@+id/entry"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:layout_toRightOf="@id/label"
    android:layout_alignParentTop="true"
    />
</LinearLayout>
<Button 
    android:id="@+id/button" 
    android:layout_width="wrap_content"
    android:layout_height="wrap_content" 
    android:layout_gravity="center_horizontal"
    android:paddingRight="30px" 
    android:paddingLeft="30px" 
    android:text="Go..." 
    />
</LinearLayout>

Or use RelativeLayout

玩物 2024-10-19 06:09:09

使用 RelativeLayout 而不是 Linear 并使用 android:右侧。

Use RelativeLayout instead of Linear one and get use of android:rightOf.

鸢与 2024-10-19 06:09:09

据我了解,您不能在线性布局中使用此类 _toRightTop、_BOTTOM 属性。使用RelativeLayout,一切都应该没问题。

As far as I understood, you cannot use such _toRightTop, _BOTTOM attributes with a linear Layout. Use RelativeLayout and all should be fine.

会发光的星星闪亮亮i 2024-10-19 06:09:09

使用相对布局而不是线性布局。这样做的一个优点是它可以提高性能。如果您尝试使用线性布局进行搜索和 id,它将检查线性布局的每个组件并尝试与其 id 匹配,但相对布局会更快,因为所有元素都是相对于彼此定义的。

Use relative layout instead of linear layout.One advantage of this is that it improves your performance.if you try to search and id suing a linear layout,it will check with every component of the linear layout and try to match with its id but with relativer layout it will be faster as all elements are defined relative to each other.

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