여기 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를 코드로 설정합니까?
답변
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
답변
에서 여기에 나는 방법을 참조 setCompoundDrawablesWithIntrinsicBounds (INT, INT, INT, INT)이 이 작업을 수행하는 데 사용할 수 있습니다.
답변
TextView에서 Drawable을 설정하기 위해 다음 방법 중 하나를 사용할 수 있습니다.
1- setCompoundDrawablesWithIntrinsicBounds (int, int, int, int)
2- setCompoundDrawables (왼쪽 그리기 가능, 위쪽 그리기 가능, 오른쪽 그리기 가능, 아래쪽 그리기 가능)
그리고 당신이 사용할 수있는 자원에서 끌어낼 수 있도록 :
getResources().getDrawable(R.drawable.your_drawable_id);
답변
코 틀린 사용하기 :
확장 기능을 만들거나 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)
}
답변
Kotlin 확장 + 드로어 블 주위에 일부 패딩
fun TextView.addDrawable(drawable: Int) {
val imgDrawable = ContextCompat.getDrawable(context, drawable)
compoundDrawablePadding = 32
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);
답변
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;
}