0

在此处输入图像描述

我有两个按钮登录和扫描。我希望这些按钮以水平方式排列,就像在单行中一样。我绑使布局水平。但是它不起作用。它们应该并排出现。我的代码如下。

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/imagesand"
android:orientation="vertical"
tools:context=".MainActivity" >

<ImageView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_gravity="center"
    android:layout_marginTop="5dp"
    />

<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@drawable/imagesand"
    android:gravity="center"
    android:orientation="vertical" >

    <LinearLayout
        android:layout_width="207dp"
        android:layout_height="wrap_content"
        android:layout_marginLeft="40dp"
        android:layout_marginRight="40dp"
        android:background="@drawable/loginbg"
        android:gravity="center"
        android:orientation="vertical"
        android:layout_alignParentBottom="true"
        android:paddingLeft="20dp"
        android:paddingRight="20dp" >

        <TextView
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:layout_marginTop="10dp"
            android:text="User Name"
            android:textAppearance="@android:style/TextAppearance.Medium" />

        <EditText
            android:id="@+id/emailid"
            android:layout_width="156dp"
            android:layout_height="45dp"
            android:layout_marginTop="5dp"
            android:background="@drawable/button"
            android:hint="User Name"
            android:inputType="text"
            android:paddingLeft="10dp"
            android:textAppearance="@android:style/TextAppearance.Medium" />

        <TextView
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:layout_marginTop="15dp"
            android:text="Password"
            android:textAppearance="@android:style/TextAppearance.Medium" />

        <EditText
            android:id="@+id/password"
            android:layout_width="156dp"
            android:layout_height="45dp"
            android:layout_marginTop="5dp"
            android:background="@drawable/button"
            android:hint="Password"
            android:inputType="textPassword"
            android:paddingLeft="10dp"
            android:textAppearance="@android:style/TextAppearance.Medium" />

        <Button
            android:id="@+id/login"
            android:layout_width="71dp"
            android:layout_height="wrap_content"
            android:layout_marginBottom="10dp"
            android:layout_marginTop="15dp"
            android:layout_weight="1"
            android:background="@drawable/login"

            android:text="Login"
            android:textAppearance="@android:style/TextAppearance.Medium"
            android:textColor="#000000"
            android:typeface="serif" />

        <Button android:id="@+id/scan"
            and 
            android:layout_width="71dp" 
            android:layout_height="wrap_content"
             android:layout_marginBottom="10dp"
              android:layout_marginTop="15dp" 
              android:layout_weight="1" 
              android:background="@drawable/login"
               android:text="scan"/>
    </LinearLayout>

   </LinearLayout>

</LinearLayout>
4

6 回答 6

2

只需将两个按钮都放在LinearLayout其方向必须是horizontal

于 2013-09-23T11:15:59.500 回答
2

简单用这个..

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="vertical" >

<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="horizontal" >

    <Button
        android:id="@+id/textView"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_gravity="left|center"
        android:layout_weight="1"
        android:text="Login"
        android:textColor="#000000" />

    <Button
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_gravity="right"
        android:layout_weight="1"
         android:text="Scan"
        android:textColor="#000000" />
</LinearLayout>
</LinearLayout>
于 2013-09-23T11:17:53.433 回答
0

您可以将按钮包装在水平 LinearLayout 中,如下所示:

<LinearLayout
  android:layout_width="match_parent"
  android:layout_height="match_parent"
  android:orientation="horizontal" >
    <Button
        android:id="@+id/login"
        android:layout_width="71dp"
        android:layout_height="wrap_content"
        android:layout_marginBottom="10dp"
        android:layout_marginTop="15dp"
        android:layout_weight="1"
        android:background="@drawable/login"

        android:text="Login"
        android:textAppearance="@android:style/TextAppearance.Medium"
        android:textColor="#000000"
        android:typeface="serif" />

    <Button android:id="@+id/scan"
        android:layout_width="71dp" 
        android:layout_height="wrap_content"
        android:layout_marginBottom="10dp"
        android:layout_marginTop="15dp" 
        android:layout_weight="1" 
        android:background="@drawable/login"
        android:text="scan"/>
</LinearLayout>

或使用RelativeLayout.

于 2013-09-23T11:15:46.457 回答
0
Use this code:

<ImageView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="center"
        android:layout_marginTop="5dp"
        />

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:background="@drawable/imagesand"
        android:gravity="center"
        android:orientation="vertical" >

        <LinearLayout
            android:layout_width="207dp"
            android:layout_height="wrap_content"
            android:layout_marginLeft="40dp"
            android:layout_marginRight="40dp"
            android:background="@drawable/loginbg"
            android:gravity="center"
            android:orientation="vertical"
            android:layout_alignParentBottom="true"
            android:paddingLeft="20dp"
            android:paddingRight="20dp" >

            <TextView
                android:layout_width="fill_parent"
                android:layout_height="wrap_content"
                android:layout_marginTop="10dp"
                android:text="User Name"
                android:textAppearance="@android:style/TextAppearance.Medium" />

            <EditText
                android:id="@+id/emailid"
                android:layout_width="156dp"
                android:layout_height="45dp"
                android:layout_marginTop="5dp"
                android:background="@drawable/button"
                android:hint="User Name"
                android:inputType="text"
                android:paddingLeft="10dp"
                android:textAppearance="@android:style/TextAppearance.Medium" />

            <TextView
                android:layout_width="fill_parent"
                android:layout_height="wrap_content"
                android:layout_marginTop="15dp"
                android:text="Password"
                android:textAppearance="@android:style/TextAppearance.Medium" />

            <EditText
                android:id="@+id/password"
                android:layout_width="156dp"
                android:layout_height="45dp"
                android:layout_marginTop="5dp"
                android:background="@drawable/button"
                android:hint="Password"
                android:inputType="textPassword"
                android:paddingLeft="10dp"
                android:textAppearance="@android:style/TextAppearance.Medium" />
      <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:gravity="center"
        android:orientation="horizontal"
            <Button
                android:id="@+id/login"
                android:layout_width="71dp"
                android:layout_height="wrap_content"
                android:layout_marginBottom="10dp"
                android:layout_marginTop="15dp"
                android:layout_weight="1"
                android:background="@drawable/login"

                android:text="Login"
                android:textAppearance="@android:style/TextAppearance.Medium"
                android:textColor="#000000"
                android:typeface="serif" />

            <Button android:id="@+id/scan"
                and 
                android:layout_width="71dp" 
                android:layout_height="wrap_content"
                 android:layout_marginBottom="10dp"
                  android:layout_marginTop="15dp" 
                  android:layout_weight="1" 
                  android:background="@drawable/login"
                   android:text="scan"/>
    </LinearLayout>
        </LinearLayout>

       </LinearLayout>

    </LinearLayout>
于 2013-09-23T11:14:53.177 回答
0

RealtiveLayout 是最好的选择:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<Button
android:id="@+id/button01"
android:layout_width="wrap_content"
android:layout_height="wrap_content" 
android:layout_below="@id/entry" 
android:layout_alignParentLeft="true"
android:layout_toLeftOf="@+id/space"
/>
<TextView
android:id="@id/space"
android:layout_width="wrap_content"
android:layout_height="wrap_content" 
android:layout_centerHorizontal="true"/>
<Button
android:id="@+id/button02"
android:layout_toRightOf="@id/button01"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_below="@id/entry" 
android:layout_alignParentRight="true"
/>  
</RelativeLayout>

似乎您想要两个相等的按钮,而不是包装的内容。我使用 TextView 创建了一个居中的间隔,并与之相对对齐。左键到父级左侧和间隔,右键到左键和父级。

于 2013-09-23T11:27:46.780 回答
0

这应该有效:

改变这些,

   <Button
        android:id="@+id/login"
        android:layout_width="71dp"
        android:layout_height="wrap_content"
        android:layout_marginBottom="10dp"
        android:layout_marginTop="15dp"
        android:layout_weight="1"
        android:background="@drawable/login"

        android:text="Login"
        android:textAppearance="@android:style/TextAppearance.Medium"
        android:textColor="#000000"
        android:typeface="serif" />

    <Button android:id="@+id/scan"
        and 
        android:layout_width="71dp" 
        android:layout_height="wrap_content"
         android:layout_marginBottom="10dp"
          android:layout_marginTop="15dp" 
          android:layout_weight="1" 
          android:background="@drawable/login"
           android:text="scan"/>

有了这个,

 <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:gravity="center"
        android:orientation="horizontal" >

        <Button
            android:id="@+id/login"
            android:layout_width="71dp"
            android:layout_height="wrap_content"
            android:layout_marginBottom="10dp"
            android:layout_marginTop="15dp"
            android:layout_weight="1"
            android:background="@drawable/login"
            android:text="Login"
            android:textAppearance="@android:style/TextAppearance.Medium"
            android:textColor="#000000"
            android:typeface="serif" />

        <Button
            android:id="@+id/scan"
            android:layout_width="71dp"
            android:layout_height="wrap_content"
            android:layout_marginBottom="10dp"
            android:layout_marginTop="15dp"
            android:layout_weight="1"
            android:background="@drawable/login"
            android:text="scan" />
    </LinearLayout>
于 2013-09-23T11:28:01.283 回答