Skip to content

Instantly share code, notes, and snippets.

View kavan-mevada's full-sized avatar

Kavan kavan-mevada

View GitHub Profile
@kavan-mevada
kavan-mevada / TextViewChip.kt
Created September 8, 2018 05:21
Chip like TextView [ Rounded Corners ]
package /* Package Name */
import android.content.Context
import android.graphics.*
import android.util.AttributeSet
import android.widget.TextView
class TextViewChip(context: Context, attrs: AttributeSet) : TextView(context, attrs) {
private val path = Path()