在我的Android应用程序中输入数字而没有任何日志应用程序关闭

时间:2016-02-23 16:38:44

标签: android android-layout android-fragments android-softkeyboard

我有Android应用程序,注册页面和编辑个人资料页面,安装我的应用程序后完成注册过程,然后在登录后编辑个人资料页面,

当我输入数字时,应用程序立即关闭,没有任何日志,我的logcat响应是

02-23 21:50:23.530 2784-2784/? W/AllCapsTransformationMethod: Caller did not enable length changes; not transforming text
02-23 21:50:23.530 2784-2784/? W/AllCapsTransformationMethod: Caller did not enable length changes; not transforming text
02-23 21:50:23.540 1663-1820/? I/LatinIME:LogUtils: Dictionary info: dictionary = spellcheck_contacts.en_US ; version = 1456244423 ; date = ?
02-23 21:50:23.550 1359-1492/? I/AccountManagerService: getTypesVisibleToCaller: isPermitted? true
02-23 21:50:23.550 1663-1820/? I/LatinIME:LogUtils: Dictionary info: dictionary = spellcheck_userunigram.en_US ; version = 1456244423 ; date = ?
02-23 21:50:23.570 1663-1820/? I/LatinIME:LogUtils: Dictionary info: dictionary = main:en ; version = 54 ; date = 1414726273
02-23 21:50:23.710 2784-2784/? W/View: requestLayout() improperly called by android.widget.ImageView{6cbdb3c V.ED..... ......ID 0,0-0,0 #7f0d01d9 app:id/selector} during layout: running second layout pass
02-23 21:50:23.710 2784-2784/? W/View: requestLayout() improperly called by android.widget.ImageView{e00d0c5 V.ED..... ......I. 0,0-0,0 #7f0d01d9 app:id/selector} during layout: running second layout pass
02-23 21:50:23.710 2784-2784/? W/View: requestLayout() improperly called by android.widget.ImageView{3531a1a V.ED..... ......I. 0,0-0,0 #7f0d01d9 app:id/selector} during layout: running second layout pass
02-23 21:50:23.710 2784-2784/? W/View: requestLayout() improperly called by android.widget.ImageView{672394b V.ED..... ......I. 0,0-0,0 #7f0d01d9 app:id/selector} during layout: running second layout pass
02-23 21:50:28.380 1663-1663/? I/LatinIME: Starting input. Cursor position = 0,0
02-23 21:50:28.420 1663-2847/? W/EGL_emulation: eglSurfaceAttrib not implemented
02-23 21:50:28.420 1663-2847/? W/OpenGLRenderer: Failed to set EGL_SWAP_BEHAVIOR on surface 0x7f4c03a98140, error=EGL_SUCCESS
02-23 21:50:30.510 1032-1032/? E/EGL_emulation: tid 1032: eglCreateSyncKHR(1252): error 0x3004 (EGL_BAD_ATTRIBUTE)
02-23 21:50:30.530 1663-1663/? I/LatinIME: Starting input. Cursor position = -1,-1
02-23 21:50:30.550 1359-1373/? I/ActivityManager: Killing 2352:com.android.messaging/u0a48 (adj 15): empty #17
02-23 21:50:30.640 1701-1962/? W/EGL_emulation: eglSurfaceAttrib not implemented
02-23 21:50:30.640 1701-1962/? W/OpenGLRenderer: Failed to set EGL_SWAP_BEHAVIOR on surface 0xe037d300, error=EGL_SUCCESS
02-23 21:50:30.660 2784-2824/? E/Surface: getSlotFromBufferLocked: unknown buffer: 0x7f4bf173ca90
02-23 21:50:30.740 1663-2847/? E/Surface: getSlotFromBufferLocked: unknown buffer: 0x7f4c03cd9ec0
02-23 21:50:36.280 1701-1701/? I/Choreographer: Skipped 334 frames!  The application may be doing too much work on its main thread.

我的编辑个人资料布局文件

<EditText
    android:id="@+id/save_zip_name_edit_text"
    style="@style/CheckrSignUpAnswerEditTextView"
    android:layout_height="50dp"
    android:background="@null"
    android:inputType="number"
    android:textSize="15dp"
    />

有没有人对这个问题有所了解?

0 个答案:

没有答案