2015-01-05 149 views
0

讓我直接指出,我在XML文件中有一個編輯文本如下。三星Galaxy S3的EditText重複文字標籤

  <EditText 
      android:id="@+id/edt_brand_name_add_product" 
      android:layout_width="match_parent" 
      android:layout_height="@dimen/dp_40" 
      android:layout_alignLeft="@+id/relative_img_banner" 
      android:layout_alignRight="@+id/relative_img_banner" 
      android:layout_below="@+id/relative_img_banner" 
      android:layout_marginTop="@dimen/dp_10" 
      android:background="@drawable/edit_text_login_page" 
      android:digits="abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ_ " 
      android:hint="Brand Name" 
      android:inputType="textNoSuggestions" 
      android:paddingLeft="@dimen/dp_5" 
      android:textColor="@color/edit_text_color" 
      android:textSize="@dimen/sp_12" 
      app:fontName="fonts/Roboto_Light.ttf" /> 

在Samsung Galaxy Tab 3中,如果我在EditText中鍵入任何數字,它將重複所有已輸入的文本。例如,如果EditText的值爲「tt」,並且如果我嘗試輸入任意數字,則會在輸入任意數字時重複「tt」多少次。應該是什麼問題。它在Nexus 5或HTC等其他設備上工作正常。

+1

此問題可能是與限制輸入字符有關(android:digits =「abcd .. 「)在三星設備。請參閱:http://stackoverflow.com/questions/16178059/edittext-input-filter-causing-repeating-letters#comment57225277_16184550 –

回答

-1
  1. 重新啓動設備

  2. 重啓IDE如果是日食

  3. 重新安裝應用程序

如果不解決接觸與設備製造商

+0

如果重新啓動設備或重新啓動IDE可以解決我的問題,我不會在這裏發佈我的問題。 –