/
BirdLeon
/
ROBLOX2016
Обзор
Документация
Войти
/
BirdLeon
/
ROBLOX2016
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
Android/NativeShell/src/com/roblox/client/components/RbxTextView.java
25 строк
646 B
PatoFlamejanteTV
full source code
19 дек 2024, 19:11
19 дек 2024, 19:11
05db15d
Код
Авторство
О чём код?
package com.roblox.client.components; import android.content.Context; import android.util.AttributeSet; import android.widget.TextView; public class RbxTextView extends TextView { public RbxTextView(Context context) { super(context); } public RbxTextView(Context context, AttributeSet attrs) { super(context, attrs); RbxFontHelper.setCustomFont(this, context, attrs); //init(attrs); } public RbxTextView(Context context, AttributeSet attrs, int defStyle) { super(context, attrs, defStyle); RbxFontHelper.setCustomFont(this, context, attrs); //init(attrs); } }