2017-09-09 6 views
0

のEditText(アンドロイド)でのコピーの問題のEditTextでテキストをコピーしようとしたとき、私はこのエラーを取得してい

Exception java.lang.NumberFormatException: Invalid int: "res/drawable/edit_text_material.xml" 
java.lang.Integer.invalidInt (Integer.java:138) 
java.lang.Integer.parse (Integer.java:410) 
java.lang.Integer.parseInt (Integer.java:367) 
com.android.internal.util.XmlUtils.convertValueToInt (XmlUtils.java:133) 
android.content.res.TypedArray.getInt (TypedArray.java:357) 
android.view.animation.Animation.<init> (Animation.java:248) 
android.view.animation.AnimationSet.<init> (AnimationSet.java:81) 
android.view.animation.AnimationUtils.createAnimationFromXml (AnimationUtils.java:117) 
android.view.animation.AnimationUtils.createAnimationFromXml (AnimationUtils.java:95) 
android.view.animation.AnimationUtils.loadAnimation (AnimationUtils.java:76) 
android.widget.Editor$SelectionPopupWindow.createAnimations (Editor.java:4086) 
android.widget.Editor$ActionPinnedPopupWindow.<init> (Editor.java:2543) 
android.widget.Editor$ActionPopupWindow.<init> (Editor.java:3577) 
android.widget.Editor$SelectionPopupWindow.<init> (Editor.java:4074) 
android.widget.Editor$SelectionHandleView.getActionPopupWindow (Editor.java:5337) 
android.widget.Editor$SelectionModifierCursorController.show (Editor.java:5305) 
android.widget.Editor.startSelectionActionMode (Editor.java:1715) 
android.widget.Editor.performLongClick (Editor.java:1020) 

android.app.ActivityThread.main (ActivityThread.java:5438) 
java.lang.reflect.Method.invoke (Method.java) 
com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run (ZygoteInit.java:738) 
com.android.internal.os.ZygoteInit.main (ZygoteInit.java:628) 

これは私のレイアウトです:

 <android.support.design.widget.TextInputLayout 
       android:layout_width="match_parent" 
       android:layout_height="wrap_content" 
       android:layout_marginBottom="10dp" 
       android:textColorHint="#565d66"> 

       <EditText 
        android:id="@+id/userEditText" 
        android:layout_width="match_parent" 
        android:layout_height="wrap_content" 
        android:hint="@string/registration.hint.user" 
        android:textColor="#565d66" 
        android:theme="@style/Custom.EditText" /> 

      </android.support.design.widget.TextInputLayout> 



// this is the theme i'm using in editText: 

     <style name="Custom.EditText" parent="Base.Widget.AppCompat.EditText"> 
     <item name="colorControlNormal">#565d66</item> 
     <item name="colorControlHighlight">@color/colorPrimary</item> 
     <item name="colorControlActivated">@color/colorPrimary</item> 
    </style> 

アンドロイドバージョン:6.0。 1、device:redmi note 4

+2

を試してみてください。 –

+0

あなたは 'edit_text_material'テーマをどこで使っていますか? – mrid

+0

例外は明確です:パス番号をパースしてみてください –

答えて

1

まあ、私もこの問題に遭遇し、私はスタイルの親を削除して解決します。

<style name="Custom.EditText"> 
    <item name="colorControlNormal">#565d66</item> 
    <item name="colorControlHighlight">@color/colorPrimary</item> 
    <item name="colorControlActivated">@color/colorPrimary</item> 
</style> 

エラーの原因は、それぞれのスマートフォンベンダーがカスタムUIを作成することであり、私たちはedittextのデフォルトスタイルを使用する必要があると思います。

スタイルを指定せずに編集テキストを追加して、テキストをコピーしてみます。それをカスタムスタイルのものと比較すると、コンテキストメニューが変わってしまいます。

PS:申し訳ありませんが、私の悪い英語の

0

色のリソースを追加します。

<color name="customEditText">#565d66</color> 

あなたのスタイルコードを変更してください。

<style name="Custom.EditText" parent="Base.Widget.AppCompat.EditText"> 
    <item name="colorControlNormal">@color/customEditText</item> 
    <item name="colorControlHighlight">@color/colorPrimary</item> 
    <item name="colorControlActivated">@color/colorPrimary</item> 
</style> 

あなたは、あなたのJavaコードを共有してくださいすることができ、この

関連する問題