如何在同一行显示textview和edittextview?

时间:2012-09-07 13:29:43

标签: android

这是我的代码,用于显示编辑文本视图和单独行的文本视图我如何在同一行显示两者请帮助我可以有人告诉我怎么可能???   我如何在同一行显示标签Login和edittextview ???

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

    <LinearLayout
      xmlns:android="http://schemas.android.com/apk/res/android"
      android:orientation="vertical"
      android:layout_width="match_parent"
      android:layout_height="wrap_content"
      android:padding="10dip"
      android:layout_below="@id/header">
      <!-- Full Name Label -->


      <LinearLayout
    android:layout_width="fill_parent"
    android:layout_height="100dp"

    android:background="#000000"
    android:orientation="vertical" >

           <TextView

        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginLeft="160dip"
        android:text="Send /Load Money"
        android:textColor="#FFCC00" />

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginLeft="180dip"
        android:text="___________________ "
        android:textColor="#99CC00" />


           <TextView

        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginLeft="170dip"
        android:text="Pay Individual"
        android:textColor="#FFCC00" />






          </LinearLayout>





        <TextView 
            android:id="@+id/lblTPIOtherAccount"
          android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:textColor="#FFCC00"
            android:text=""/>         


      <EditText  android:id="@+id/txtTPIotheraccount"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
                style="?android:attr/buttonStyleSmall"

            android:layout_marginTop="2dip"
            android:singleLine="true"
            android:textColor="#ffffff"

            android:layout_marginBottom="5dip"/>
      <!--  Pin Label -->
      <TextView 
          android:id="@+id/lblTPIPinno"
          android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:textColor="#FFCC00"
            android:text=""/>
      <EditText 

         android:id="@+id/txtTPIpinno"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
                style="?android:attr/buttonStyleSmall"

            android:layout_marginTop="2dip"
            android:textColor="#ffffff"

            android:singleLine="true"
            android:layout_marginBottom="5dip"/>




      <TextView 
           android:id="@+id/lblTPIAmount"
          android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:textColor="#FFCC00"
            android:text=""/>



      <EditText android:id="@+id/txtTPIamount"
            android:layout_width="fill_parent"
                style="?android:attr/buttonStyleSmall"

            android:textColor="#ffffff"

            android:layout_height="wrap_content"

            android:singleLine="true"
            android:layout_marginTop="2dip"
            android:layout_marginBottom="5dip"/>

      <!-- Register Button -->      
      <Button android:id="@+id/btnTPIsubmit"
          style="?android:attr/buttonStyleSmall"

            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:layout_marginTop="10dip"
            android:text="Submit"/>

         <Button   android:id="@+id/clearTPIButton"
             style="?android:attr/buttonStyleSmall"

            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:layout_marginTop="10dip"
            android:text="Clear"/>
          <Button android:id="@+id/btnTPIgoback"
              style="?android:attr/buttonStyleSmall"

            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:layout_marginTop="10dip"
            android:text="Go Back"/>


    </LinearLayout>
    <!-- Registration Form Ends -->

2 个答案:

答案 0 :(得分:1)

将以下XML代码写入主布局代码,它将解决您的问题。

<LinearLayout
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:orientation="horizontal"
    android:padding="10dip" >

    <TextView
        android:id="@+id/mTxtView1"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:text="Name" />

    <EditText
        android:id="@+id/mEdttxt1"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:hint="Enter Name" />
</LinearLayout>

答案 1 :(得分:0)

TextViewEditText放入LinearLayout android:orientation="horizontal"属性