Android text cursor in EditText

I am writing an application for android 2.1 + . In one of my actions, I have an EditText with a user keyboard (KeyboardView with displaying keys in keyboard.xml). Everything works fine on Android 2.1 (everything displays correctly - the text cursor blinks), problems begin with android 2.3.3 , where the textcursor in the edittext is visible, but not blinking, in the text course android 3.0 + is only invisible- in both cases the keyboard works correctly. I have been struggling with this problem for a couple of days ... any thoughts would be really helpful.

There is one thing I should mention earlier. This activity is divided into two fragments (android support library), EditText is on one of them, and the keyboard is called from parent activity.

+5
source share
1 answer

When I ran into this problem earlier, the solution was to disable hardware acceleration in the activity containing the edit text by changing the manifest as follows:

<activity android:name="activity name" android:hardwareAccelerated="false"/>
0
source

All Articles