โปรแกรมตั้งค่า drawable ทางซ้ายใน TextView โดยทางโปรแกรม


285

ฉันมี textView เป็น xml ที่นี่

<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

ฉันต้องการเปลี่ยน drawable ในรหัส

ยังมีอีกไหมที่จะทำสิ่งนี้? หรือตั้งค่า drawableLeft เป็นโค้ดสำหรับมุมมองข้อความ?

คำตอบ:


781

คุณสามารถใช้setCompoundDrawablesWithIntrinsicBounds (int ซ้าย, int บน, ขวา int, int ล่าง)

ตั้ง 0 ที่คุณไม่ต้องการภาพ

ตัวอย่าง Drawable ทางซ้าย:

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

เคล็ดลับ: เมื่อใดก็ตามที่คุณรู้แอตทริบิวต์ XML ใด ๆ แต่ไม่มีเงื่อนงำเกี่ยวกับวิธีใช้งานในขณะใช้งานจริง เพียงไปที่คำอธิบายของคุณสมบัตินั้นในเอกสารนักพัฒนาซอฟต์แวร์ คุณจะพบวิธีการที่เกี่ยวข้องหากรองรับในขณะใช้งานจริง เช่นสำหรับ DrawableLeft


ดังนั้นฉันจะตั้ง drawable ที่ในวิธีนี้ได้อย่างไร
coder_For_Life22

1
+1 มันทำงานสำหรับการตั้งค่า android: drawableLeft สำหรับ TextView โดยทางโปรแกรม เพื่อน Thanx
Paresh Mayani

35
+1 สำหรับการเพิ่มทิป ที่ควรจะเป็นสิ่งแรกที่ devs จะบอกเมื่อใช้ docs
gmjordan

@BrainCrash คุณถูกต้องฉันเข้าใจผิดกับวิธีการใหม่ที่มีชื่อเดียวกัน
Deathem Emperor

2
สวัสดีฉันใช้วิธีนี้เพื่อตั้งค่า drawables แต่ฉันไม่พบส่วนของตัวตอบโต้ ฉันต้องตรวจสอบว่า Compound textview มี drawable บ้างไหม ฉันจะทำอย่างไร พยายามเปรียบเทียบtextview.getCompoundDrawablesRelative()[0]กับmContext.getResources().getDrawable(R.drawable.my_drawable)
ravi


6

คุณสามารถใช้วิธีใดวิธีหนึ่งต่อไปนี้เพื่อตั้งค่า Drawable บน TextView:

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

2- setCompoundDrawables (Left_Drawable, Top_Drawable, Right_Drawable, Bottom_Drawable)

และเพื่อให้สามารถดึงได้จากแหล่งข้อมูลคุณสามารถใช้:

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

ไม่ setCompoundDrawablesWithIntrinsicBounds (int, int, int, int) คือ API Levet 3 จากลิงก์ของคุณเอง ...
BrainCrash

1

ใช้ Kotlin:

คุณสามารถสร้างฟังก์ชั่นเสริมหรือเพียงแค่ใช้setCompoundDrawablesWithIntrinsicBoundsโดยตรง

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

หากคุณต้องการปรับขนาด drawable คุณสามารถใช้ฟังก์ชันส่วนขยายนี้

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.