ChandraSaiMohan bhupati Ответов: 0

Как задать размер текстового представления в пользовательском поле TextView андроид


У меня есть требование, когда мне нужно использовать пользовательский TextView во всех модулях приложения .
Когда пользователь вводит атрибут XML как "большой" ,пользовательский textview должен забрать значение из dimen.xml и установить как 40sp .
При этом я сталкиваюсь с проблемами:

Что я уже пробовал:

attrs.xml:
<?xml version="1.0" encoding="utf-8"?>
<resources>
    <declare-styleable name="CustomFontTextView">
        <attr name="textSize"/>
    </declare-styleable>

    <attr name="textSize" format="enum">
        <enum name="text_size_large" value="1"/>
        <enum name="text_size_small" value="2"/>
        <enum name="text_size_medium" value="3"/>
    </attr>
</resources>

dimens.xml:
<pre><resources>
    <!-- Default screen margins, per the Android Design guidelines. -->
    <dimen name="text_size_small">16sp</dimen>
    <dimen name="text_size_medium">25sp</dimen>
    <dimen name="text_size_large">40sp</dimen>
</resources>


CustomTextView.kt:
class CustomFontTextView   @JvmOverloads constructor(
    context: Context,
    attrs: AttributeSet? = null,
    defStyle: Int = 0,
    defStyleRes: Int = 0
) : AppCompatTextView(context, attrs, defStyle) {
    var customFont: String? = null

    init {
        attrs?.let {
            setTextSize(context, attrs);
        }
    }

    private fun setTextSize(context: Context,
                            attrs: AttributeSet){
        val a = context.obtainStyledAttributes(
            attrs,
            R.styleable.CustomFontTextView
        )
        val cf = a.getInteger(R.styleable.CustomFontTextView_textSize, 0)
        var fontSize = 1
        fontSize = when(cf){
            1 -> R.dimen.text_size_large
            2 -> R.dimen.text_size_small
            3 -> R.dimen.text_size_medium
            else -> R.dimen.text_size_small
        }
        println("fontSize $fontSize")
        val textSize  = a.getDimensionPixelSize(fontSize, 0);
        println("TextSize $textSize")
        this.setTextSize(TypedValue.COMPLEX_UNIT_SP, textSize.toFloat());
        a.recycle()
    }

 MyLayout:
<pre><androidx.constraintlayout.widget.ConstraintLayout 
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".MainActivity">
    <com.android.dynamicfeaturemodulesample.UI.CustomFontTextView
        android:id="@+id/textView"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_marginTop="57dp"
        android:text="TextView"
        app:fontName="Roboto_Italic"
        app:textSize="text_size_large"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent" />
</androidx.constraintlayout.widget.ConstraintLayout>



The below exception is received:
2020-09-17 21:20:19.262 17486-17486/com.android.dynamicfeaturemodulesample 
E/AndroidRuntime: Caused by: java.lang.ArrayIndexOutOfBoundsException: 
length=875; index=2032337659 at 
android.content.res.TypedArray.getDimensionPixelSize(TypedArray.java:774)

Gerry Schmitz

Нам интересно, что это за "проблемы". Собака беспокоит тебя?

David Crow

Это исключение, по-видимому, не требует объяснений. getDimensionPixelSize() вызывается с индексом 2032337659, который, по-видимому, находится за пределами размера массива.

ChandraSaiMohan bhupati

Есть ли способ устранить это исключение ?

0 Ответов