mirror of
https://github.com/sudoxnym/habitica-android.git
synced 2026-08-01 11:40:34 +00:00
start using native emojis
This commit is contained in:
parent
6401a085d8
commit
c3c52b95dc
1 changed files with 2 additions and 6 deletions
|
|
@ -2,17 +2,13 @@ package com.habitrpg.android.habitica.ui.views
|
|||
|
||||
import android.content.Context
|
||||
import android.util.AttributeSet
|
||||
import net.pherth.android.emoji_library.EmojiTextView
|
||||
import android.widget.TextView
|
||||
|
||||
open class HabiticaEmojiTextView : EmojiTextView {
|
||||
open class HabiticaEmojiTextView : TextView {
|
||||
|
||||
constructor(context: Context) : super(context)
|
||||
|
||||
constructor(context: Context, attrs: AttributeSet) : super(context, attrs)
|
||||
|
||||
constructor(context: Context, attrs: AttributeSet, defStyle: Int) : super(context, attrs, defStyle)
|
||||
|
||||
init {
|
||||
setEmojiconSize((textSize * 1.5).toInt())
|
||||
}
|
||||
}
|
||||
Loading…
Reference in a new issue