与上面的EditText相比,EditText宽度更长

时间:2012-08-04 08:49:15

标签: android

我有一个包含一个AutoCompleteTextView和一个EditText的活动。通过xml文件禁用edittext,但与未禁用的AutoCompleteTextView相比,宽度更长。为什么?我怎么能有相同的大小。第二个edittext.please帮助的xml代码。

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:padding="10dip"
android:gravity="right"> 

<TextView
    android:id="@+id/cusNameTV"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="@string/customerName"
    android:textColor="#FFFFFF" 
    android:layout_gravity="right"
    />

<AutoCompleteTextView
    android:id="@+id/cusName_CB"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"/>

<TextView
    android:id="@+id/cusaddrTV"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content" 
    android:text="@string/cusaddress"
    android:textColor="#FFFFFF"
    android:layout_marginBottom="5dip"
    android:layout_marginTop="5dip" 
    android:layout_gravity="right"/>


<EditText
    android:id="@+id/editText_cusAddress"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:background="@android:color/darker_gray"
    android:clickable="false"
    android:cursorVisible="false"
    android:focusable="false"
    android:focusableInTouchMode="false"
    android:inputType="none"
    android:state_enabled="false"/>

</LinearLayout>

2 个答案:

答案 0 :(得分:0)

 <RelativeLayout 
       xmlns:android="http://schemas.android.com/apk/res/android"
       android:id="@+id/main"
       android:layout_width="fill_parent"
       android:layout_height="fill_parent">

    <TextView
         android:id="@+id/host_label"
         android:layout_width="wrap_content"
         android:layout_height="wrap_content"
         android:layout_below="@+id/home"
         android:paddingTop="0dp"
         android:paddingLeft="15dp"
         android:textSize="25sp"
         android:textColor="#a5d4e2"
        android:text="host"
         android:textStyle="normal"
        />
  <TextView
     android:id="@+id/port_label"
     android:layout_width="wrap_content"
     android:layout_height="wrap_content"
     android:layout_below="@+id/home"
     android:layout_toRightOf="@+id/host_input"
     android:paddingTop="0dp"
     android:textSize="25sp"
     android:textColor="#a5d4e2"
     android:text="port"
     android:textStyle="normal"  />

    <EditText 
          android:id="@+id/host_input" 
          android:inputType="textEmailAddress"
         android:layout_width="172dp" 
         android:layout_height="wrap_content" 
         android:background="@android:drawable/editbox_background"
         android:layout_below="@id/host_label"
         android:layout_marginTop="4dp" 
         android:layout_marginLeft="15dp" 
         android:layout_marginRight="15dp"  />

      <EditText 
        android:id="@+id/port_input" 
        android:inputType="number"
        android:layout_width="100dp" 
        android:layout_height="wrap_content" 
        android:background="@android:drawable/editbox_background"
        android:layout_below="@id/host_label"
        android:layout_toRightOf="@id/host_input"
        android:layout_marginTop="4dp"/>

    <TextView
        android:id="@+id/username_label"
        android:layout_width="wrap_content"
       android:layout_height="wrap_content"
       android:layout_below="@+id/host_input"
       android:paddingTop="15dp"
       android:paddingLeft="15dp"
       android:textSize="25sp"
        android:textColor="#a5d4e2"
       android:text="username"
       android:textStyle="normal"/>

        <EditText 
            android:id="@+id/username_input" 
           android:inputType="textEmailAddress"
           android:layout_width="fill_parent" 
           android:layout_height="wrap_content" 
           android:background="@android:drawable/editbox_background"
           android:layout_below="@id/username_label"
           android:layout_marginTop="4dp" 
           android:layout_marginLeft="15dp" 
          android:layout_marginRight="15dp" 
   />

                                                  

答案 1 :(得分:0)

根据您的XML,EditText背景为灰色,没有边框。但AutoCompleteTextView没有背景色。所以你有AutoCompleteTextView的边界线。这使您看AutoCompleteTextView大于EditText

我为两个视图都给出了背景颜色,现在看起来一样。

边界线只让你困惑。

比较如下:

XML的布局为enter image description here

已编辑的布局为enter image description here