İhsan Işık

Results 12 comments of İhsan Işık

TextView vector fix implementation quick copypasta for later: ```Kotlin /** * A TextView that supports vector drawables. * * See: http://stackoverflow.com/questions/35761636/is-it-possible-to-use-vectordrawable-in-buttons-and-textviews-using-androiddraw */ class VectorCompatTextView : AppCompatTextView { constructor(context: Context, attrs:...

The fix for TextView applies to EditText too. All we need to do is to extend `AppCompatEditText` instead and to rename `VectorCompatTextView` styleable to `VectorCompatView` or something.