I want to create an Android app using API 8
<uses-sdk android:minSdkVersion="8"/>
I have a EditText
control in which I want to type in right-to-left mode.
There is a new property called textDirection which is support in API 17
and higher. But I want to know if there is anyway to make my app supports this property. I heard about some appcompat things but I couldn't figure out if android-support-v7-appcompat has something to do with it.
Will android-support-v7-appcompat
solve my problem? cause I tried that and also Adding android.support.v4 to your Android application in IntelliJ IDEA. but none solved my problem.
Is there any other way to do it?