【发布时间】:2015-09-09 14:04:43
【问题描述】:
我面临一个奇怪的问题。在我的 EditText 中:
1) 当用户输入任何内容时,我可以看到多个光标。
2) 即使在用户输入内容时,提示也是可见的。 请参考截图
以下是布局 XML:
<RelativeLayout
android:id="@+id/relativeLayout1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_centerVertical="true"
>
<AutoCompleteTextView
android:id="@+id/actvCountry"
style="@style/autoCompleteTextTheme"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="15dp"
android:layout_marginRight="15dp"
android:layout_marginTop="15dp"
android:background="@drawable/edittext_background"
android:hint="@string/select_country_hint"
android:singleLine="true"
android:textColor="@color/white"
android:textColorHint="@color/hint_color"
android:textSize="26sp" />
<EditText
android:id="@+id/etMobileNumber"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignBaseline="@+id/tvCode"
android:layout_alignBottom="@+id/tvCode"
android:layout_alignLeft="@+id/tvCode"
android:layout_marginRight="15dp"
android:background="@drawable/edittext_background"
android:ems="10"
android:hint="@string/mobile_number"
android:inputType="number"
android:maxLength="12"
android:paddingLeft="80dp"
android:singleLine="true"
android:textColor="@color/white"
android:textColorHint="@color/hint_color"
android:textSize="26sp" >
<requestFocus />
</EditText>
<TextView
android:id="@id/tvCode"
style="@style/editTextTheme"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@id/actvCountry"
android:layout_margin="15dp"
android:singleLine="true"
android:text=""
android:textColor="@color/white"
android:textColorHint="@color/white"
android:textSize="26sp" />
<TextView
android:id="@+id/tvMsg"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignLeft="@+id/etMobileNumber"
android:layout_below="@id/etMobileNumber"
android:layout_marginBottom="15dp"
android:layout_marginRight="2dp"
android:layout_marginTop="10dp"
android:ellipsize="marquee"
android:text="@string/enter_country_code_mobile"
android:textColor="@color/white"
android:textColorHint="@color/white" />
<Button
android:id="@+id/btnProceed"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@id/tvMsg"
android:layout_margin="15dp"
android:background="@drawable/ripple_button_selector"
android:padding="7dp"
android:text="@string/login"
android:textAllCaps="false"
android:textColor="@color/white"
android:textSize="26sp" />
</RelativeLayout>
下面是EditText中设置的背景(edittext_background.xml)
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" >
<stroke
android:width="2dip"
android:color="@color/white" />
<padding
android:bottom="5dip"
android:left="5dip"
android:right="10dip"
android:top="5dip" />
欢迎提出任何建议。
【问题讨论】:
-
可以上传更多的xml代码吗?
-
上传完整的 XML
-
我看到你的代码很好...尝试清理和重建项目..
-
不幸的是已经尝试过清理和重建 :-(
-
您的代码在我的机器上运行良好。尝试清洁它