programing

텍스트 보기에서 왼쪽 그리기 가능하도록 프로그래밍 방식으로 설정

topblog 2023. 8. 26. 10:16
반응형

텍스트 보기에서 왼쪽 그리기 가능하도록 프로그래밍 방식으로 설정

여기 xml로 된 textView가 있습니다.

<TextView
        android:id="@+id/bookTitle"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:drawableLeft="@drawable/checkmark"
        android:gravity="center_vertical"
        android:textStyle="bold"
        android:textSize="24dip"
        android:maxLines="1"
        android:ellipsize="end"/>

보다시피 드로잉 가능한 왼쪽을 xml로 설정했습니다.

코드상 드로잉 가능한 것을 변경하고 싶습니다.

이것을 할 방법이 있습니까?또는 텍스트 보기에 대해 그리기 가능한 왼쪽을 코드로 설정합니까?

setCompoundDrawables를 사용할 수 있습니다.내부 경계 포함(왼쪽, 맨 위, 오른쪽, 맨 아래)

이미지를 원하지 않는 곳에 0을 설정

왼쪽의 그리기 가능 예:

TextView textView = (TextView) findViewById(R.id.myTxtView);
textView.setCompoundDrawablesWithIntrinsicBounds(R.drawable.icon, 0, 0, 0);

또는 setCompoundDrawablesRelativeWithIntrinsicBounds를 사용하여 RTL/LTR 레이아웃을 지정할 수 있습니다.


팁: XML 속성을 알고 있지만 런타임에 XML 속성을 사용하는 방법에 대한 단서가 없는 경우.개발자 문서에서 해당 속성에 대한 설명으로 이동하십시오.런타임에서 지원되는 경우 관련 메서드를 찾을 수 있습니다.드로잉 가능한 왼쪽의 경우

Kotlin 사용:

확장 함수를 만들거나 사용할 수 있습니다.setCompoundDrawablesWithIntrinsicBounds직접적으로.

fun TextView.leftDrawable(@DrawableRes id: Int = 0) {
   this.setCompoundDrawablesWithIntrinsicBounds(id, 0, 0, 0)
}

그리기 테이블의 크기를 조정해야 하는 경우 이 확장 기능을 사용할 수 있습니다.

textView.leftDrawable(R.drawable.my_icon, R.dimen.icon_size)

fun TextView.leftDrawable(@DrawableRes id: Int = 0, @DimenRes sizeRes: Int) {
    val drawable = ContextCompat.getDrawable(context, id)
    val size = resources.getDimensionPixelSize(sizeRes)
    drawable?.setBounds(0, 0, size, size)
    this.setCompoundDrawables(drawable, null, null, null)
}

정말 화려해지려면 크기 및/또는 색상을 수정할 수 있는 포장지를 만드십시오.

textView.leftDrawable(R.drawable.my_icon, colorRes = R.color.white)

fun TextView.leftDrawable(@DrawableRes id: Int = 0, @DimenRes sizeRes: Int = 0, @ColorInt color: Int = 0, @ColorRes colorRes: Int = 0) {
    val drawable = drawable(id)
    if (sizeRes != 0) {
        val size = resources.getDimensionPixelSize(sizeRes)
        drawable?.setBounds(0, 0, size, size)
    }
    if (color != 0) {
        drawable?.setColorFilter(color, PorterDuff.Mode.SRC_ATOP)
    } else if (colorRes != 0) {
        val colorInt = ContextCompat.getColor(context, colorRes)
        drawable?.setColorFilter(colorInt, PorterDuff.Mode.SRC_ATOP)
    }
    this.setCompoundDrawables(drawable, null, null, null)
}

여기서 메서드 집합 CompoundDrawables가 표시됩니다.With Intrinsic Bounds(int,int,int,int)를 사용하여 이 작업을 수행할 수 있습니다.

다음 방법 중 하나를 사용하여 텍스트 보기에서 그리기 가능을 설정할 수 있습니다.

1세트 복합 드로잉 테이블내장 경계 포함(int, int, int, int)

2세트 복합 드로잉 가능 (왼쪽_드로잉 가능, 위쪽_드로잉 가능, 오른쪽_드로잉 가능, 아래쪽_드로잉 가능)

또한 리소스를 활용할 수 있는 방법은 다음과 같습니다.

getResources().getDrawable(R.drawable.your_drawable_id);

코틀린 확장 + 드로잉 가능한 주변의 패딩

fun TextView.addLeftDrawable(drawable: Int, padding: Int = 32) {
    val imgDrawable = ContextCompat.getDrawable(context, drawable)
    compoundDrawablePadding = padding
    setCompoundDrawablesWithIntrinsicBounds(imgDrawable, null, null, null)
}

XML 또는 Java를 사용할 수 있는 두 가지 방법이 있습니다.정적이고 변경할 필요가 없는 경우 XML로 초기화할 수 있습니다.

  android:drawableLeft="@drawable/cloud_up"
    android:drawablePadding="5sp"

이제 아이콘을 동적으로 변경해야 하는 경우 이벤트에 따라 아이콘을 호출하여 변경할 수 있습니다.

       textViewContext.setText("File Uploaded");
textViewContext.setCompoundDrawablesWithIntrinsicBounds(R.drawable.uploaded, 0, 0, 0);

텍스트 보기를 왼쪽/오른쪽 그리기 가능한 색상으로 변경할 수 있습니다.

for (drawable in binding.tvBloodPressure.compoundDrawablesRelative) {
            if (drawable != null) {
                drawable.colorFilter = PorterDuffColorFilter(
                    ContextCompat.getColor(binding.tvBloodPressure.context, color),
                    PorterDuff.Mode.SRC_IN
                )
            }
        }

이렇게 쓰고 있습니다.

  txtUserName.setCompoundDrawablesWithIntrinsicBounds(
        requireActivity().getDrawable(
            R.drawable.ic_my_account
        ), null, null, null
    )
static private Drawable **scaleDrawable**(Drawable drawable, int width, int height) {

    int wi = drawable.getIntrinsicWidth();
    int hi = drawable.getIntrinsicHeight();
    int dimDiff = Math.abs(wi - width) - Math.abs(hi - height);
    float scale = (dimDiff > 0) ? width / (float)wi : height /
            (float)hi;
    Rect bounds = new Rect(0, 0, (int)(scale * wi), (int)(scale * hi));
    drawable.setBounds(bounds);
    return drawable;
}

언급URL : https://stackoverflow.com/questions/6931900/programmatically-set-left-drawable-in-a-textview

반응형