Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have an edittext in my application that will show the cursor correctly in Froyo or Gingerbread, however in later sdks the cursor is invisible. I have found online the solution is to set the android:textCursorDrawable="@null" so that the edittext will use the font color for the cursor. However, since my minsdkversion is 8, I do not have access to that property.

Is their either a way to selectively add a property based on the sdk you are on? Or possibly a way to work around this so that I can have visible cursors on both older and newer sdk versions?

share|improve this question
1  
Can't you use different layout folders for the versions above Gingerbread where you set that property? – Luksprog Sep 12 '12 at 18:28
@Luksprog that's probably the easiest way from what I can see. – Drake Clarris Sep 12 '12 at 19:42
@Luksprog Would you mind posting an example? – Michaeldcooney Sep 13 '12 at 18:55

3 Answers

up vote 1 down vote accepted
+50

I don't know your current setup, but one way to use that property is to use different layouts folders based on various android versions. android:textCursorDrawable is a property introduced in API 12 so you could have a layout folder like layout-v12 which will be used where the API is 12 or greater. In the layouts from this folder the use of the property is valid. For lower versions, Froyo and Gingerbread, you don't have any problems so you would use a default folder, layout. In the end you'll have two layouts folder(containing the same layout files):

layout // don't need the property
layout-v12 // use the property

That leaves out API 11, I don't know if this is a deal breaker for you.

share|improve this answer
Thanks, that is what I needed! – Michaeldcooney Sep 14 '12 at 13:55

Try setting your targetSdkVersion to API level 13 or higher to gain access to the android:textCursorDrawable property

share|improve this answer
My targetSdkVersion is 16 – Michaeldcooney Sep 3 '12 at 14:09

If you not has a cursor I guess the input is simple and say you only can enter new chars at end of the text?

I think you can use a TextView and to this add you own KeyListener? But in this case you will has problem with the virtual keyboard not is show, see some of this links:

Forcing the Soft Keyboard open

android force keyboard visible

or create you own keyboard if the rang of valid keys is very limit as only digits.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.