我有一个包含一个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>
答案 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的布局为
已编辑的布局为