How can I get my custom controls in palette in Android Studio?
I have created Custom Textview control having custom attributes, How can I get in Palette in android studio? XML Code for my Custom control is as follow... I have extended my Textview class with the same name, but I'm unable to get my attributes when user drag and drop a new text view control, he gets Customized TextView
To extend TextView class with same Name I did
package com.example.usmanchattha.custom
import android.content.Context
import android.graphics.Typeface
import...