M_mainFrame-> editor () & # 8594; hasComposition does not release

In my application, I loaded the MVC pages in an Android web browser. There are two text editors for the username and password on the MVC page. When you focus on the text field, I get a warning: m_mainFrame->editor()->hasComposition not .

Why am I getting this warning?

Note I get this error after updating android from 2.1 to 2.3.6

to come in:

 08-21 12:10:21.269: D/CONTEXT(2928): m_mainFrame->editor()->hasComposition not 08-21 12:10:21.669: D/CONTEXT(2928): m_mainFrame->editor()->hasComposition not 08-21 12:10:21.699: D/CONTEXT(2928): m_mainFrame->editor()->hasComposition not 08-21 12:10:21.709: D/CONTEXT(2928): m_mainFrame->editor()->hasComposition not 08-21 12:10:22.169: D/CONTEXT(2928): m_mainFrame->editor()->hasComposition not 08-21 12:10:22.199: D/CONTEXT(2928): m_mainFrame->editor()->hasComposition not 08-21 12:10:22.209: D/CONTEXT(2928): m_mainFrame->editor()->hasComposition not 08-21 12:10:22.239: D/CONTEXT(2928): m_mainFrame->editor()->hasComposition not 08-21 12:10:22.259: D/CONTEXT(2928): m_mainFrame->editor()->hasComposition not 08-21 12:10:22.739: D/CONTEXT(2928): m_mainFrame->editor()->hasComposition not 08-21 12:10:22.769: D/CONTEXT(2928): m_mainFrame->editor()->hasComposition not 08-21 12:10:22.939: D/CONTEXT(2928): m_mainFrame->editor()->hasComposition not 08-21 12:10:22.959: D/CONTEXT(2928): m_mainFrame->editor()->hasComposition not 08-21 12:10:23.429: D/CONTEXT(2928): m_mainFrame->editor()->hasComposition not 08-21 12:10:23.459: D/CONTEXT(2928): m_mainFrame->editor()->hasComposition not 08-21 12:10:23.479: D/CONTEXT(2928): m_mainFrame->editor()->hasComposition not 08-21 12:10:23.799: V/webview(2928): singleCursorHandlerTouchEvent -getEditableSupport FASLE 08-21 12:10:23.929: D/CONTEXT(2928): m_mainFrame->editor()->hasComposition not 08-21 12:10:23.949: D/CONTEXT(2928): m_mainFrame->editor()->hasComposition not 08-21 12:10:24.149: D/CONTEXT(2928): m_mainFrame->editor()->hasComposition not 08-21 12:10:24.239: V/webview(2928): OnSizeChanged: Enter 08-21 12:10:24.269: D/CONTEXT(2928): m_mainFrame->editor()->hasComposition not 08-21 12:10:24.319: D/CONTEXT(2928): m_mainFrame->editor()->hasComposition not 08-21 12:10:24.339: D/CONTEXT(2928): m_mainFrame->editor()->hasComposition not 08-21 12:10:24.469: D/CONTEXT(2928): m_mainFrame->editor()->hasComposition not 08-21 12:10:24.479: D/CONTEXT(2928): m_mainFrame->editor()->hasComposition not 08-21 12:10:26.969: D/CONTEXT(2928): m_mainFrame->editor()->hasComposition not 08-21 12:10:26.989: D/CONTEXT(2928): m_mainFrame->editor()->hasComposition not 08-21 12:10:27.139: D/CONTEXT(2928): m_mainFrame->editor()->hasComposition not 08-21 12:10:27.299: V/webview(2928): singleCursorHandlerTouchEvent -getEditableSupport FASLE 08-21 12:10:27.319: D/CONTEXT(2928): m_mainFrame->editor()->hasComposition not 08-21 12:10:27.349: D/CONTEXT(2928): m_mainFrame->editor()->hasComposition not 08-21 12:10:27.379: D/CONTEXT(2928): m_mainFrame->editor()->hasComposition not 08-21 12:10:27.539: D/CONTEXT(2928): m_mainFrame->editor()->hasComposition not 
+45
android android-webview
Aug 21 2018-12-12T00:
source share
2 answers

This is not a warning or error, but only a debugging message that is displayed each time drawContentComposition is called. I assume this shows that the hasComposition value is false.

You cannot do anything to avoid this, so that it does not bother you ... well, obviously, in my opinion.

+2
May 14 '13 at 15:33
source share
— -

You get this message in your journal because of the basic logic of WebKit - there must be some member function that checks if there is any composition in the main frame and displays its result in the journal, that is, it. You do not have to worry about it.

+1
Mar 26 '13 at 11:44
source share



All Articles