프로그래밍 방식으로 TextView에서 왼쪽 드로어 블을 설정


285

여기 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"/>

보시다시피 DrawableLeft를 xml로 설정했습니다.

코드에서 드로어 블을 변경하고 싶습니다.

어쨌든 이것을 할 갈 길이 있습니까? 또는 텍스트보기를 위해 drawableLeft를 코드로 설정합니까?

답변:


781

setCompoundDrawablesWithIntrinsicBounds (int left, int top, int right, int bottom)를 사용할 수 있습니다

이미지를 원하지 않는 곳에 0을 설정하십시오.

왼쪽의 Drawable에 대한 예 :

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

팁 : XML 속성을 알고 있지만 런타임시이를 사용하는 방법에 대한 실마리가 없을 때마다. 개발자 문서에서 해당 속성에 대한 설명으로 이동하십시오. 당신이 찾을 것입니다 관련 방법을 런타임시, 지원되는 경우. 즉 DrawableLeft


그렇다면이 방법에서 드로어 블을 어디에 설정해야합니까?
coder_For_Life22

1
+1 프로그래밍 방식으로 TextView에 android : drawableLeft를 설정합니다. 고맙습니다 친구
Paresh Mayani

35
팁 추가를 위해 +1 문서를 사용할 때 개발자들에게 가장 먼저
들려야

@BrainCrash 당신 말이 맞아, 나는 같은 이름을 가진 새로운 방법으로 착각했다.
deathemperor

2
안녕하세요,이 방법을 사용하여 드로어 블을 설정했지만 getter 카운터 부분을 찾을 수 없습니다. Compound textview에 드로어 블이 있는지 확인해야했습니다. 어떻게합니까? textview.getCompoundDrawablesRelative()[0]mContext.getResources().getDrawable(R.drawable.my_drawable)
ravi


6

TextView에서 Drawable을 설정하기 위해 다음 방법 중 하나를 사용할 수 있습니다.

1- setCompoundDrawablesWithIntrinsicBounds (int, int, int, int)

2- setCompoundDrawables (왼쪽 그리기 가능, 위쪽 그리기 가능, 오른쪽 그리기 가능, 아래쪽 그리기 가능)

그리고 당신이 사용할 수있는 자원에서 끌어낼 수 있도록 :

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

아니오, setCompoundDrawablesWithIntrinsicBounds (int, int, int, int)는 귀하의 링크에서 API Levet 3입니다 ...
BrainCrash

1

코 틀린 사용하기 :

확장 기능을 만들거나 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)
}

0

Kotlin 확장 + 드로어 블 주위에 일부 패딩

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

0

XML 또는 Java를 사용할 수있는 두 가지 방법이 있습니다. 정적이며 변경이 필요하지 않으면 XML로 초기화 할 수 있습니다.

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

아이콘을 동적으로 변경해야하는 경우 이벤트를 기반으로 아이콘을 호출하여이를 수행 할 수 있습니다.

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

-8
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;
}

이것은 질문에 대답하지 않습니다. TextView 관련 답변이 필요합니다.
Rick
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.