I ha...">

How to add textDirection support in API 8?

I want to create an android application using API 8

 <uses-sdk android:minSdkVersion="8"/>

I have a control EditTextin which I want to enter a mode from right to left. There is a new property textDirection , which is supported in the API 17above. But I want to know if there is a way to get my application to support this property. I heard about some appcompat things, but I could not understand that android-support-v7-appcompat has something to do with it.

Will android-support-v7-appcompatsolve my problem? because I tried this as well as Adding android.support.v4 to your Android app in IntelliJ IDEA . but no one solved my problem.

Is there any other way to do this?

+4
source share

Source: https://habr.com/ru/post/1607986/


All Articles