ฉันกำลังสร้างปุ่มแบบไดนามิก ฉันจัดรูปแบบพวกเขาโดยใช้ XML ก่อนและฉันพยายามที่จะใช้ XML ด้านล่างและทำให้มันเป็นโปรแกรม
<Button
android:id="@+id/buttonIdDoesntMatter"
android:layout_height="wrap_content"
android:layout_width="fill_parent"
android:text="buttonName"
android:drawableLeft="@drawable/imageWillChange"
android:onClick="listener"
android:layout_width="fill_parent">
</Button>
นี่คือสิ่งที่ฉันมี ฉันสามารถทำทุกอย่างได้
linear = (LinearLayout) findViewById(R.id.LinearView);
Button button = new Button(this);
button.setText("Button");
button.setOnClickListener(listener);
button.setLayoutParams(
new LayoutParams(
android.view.ViewGroup.LayoutParams.FILL_PARENT,
android.view.ViewGroup.LayoutParams.WRAP_CONTENT
)
);
linear.addView(button);
drawableLeft
และไอคอนโฟลเดอร์เป็น ฉันลองคำแนะนำของคุณที่นี่เพื่อตั้ง "ไอคอนต้องห้าม" เมื่อคุณคลิกในโฟลเดอร์ที่ไม่มีสิทธิ์อ่านและใช้งานได้ อย่างไรก็ตามเมื่อคุณเปลี่ยนโฟลเดอร์และโหลดอะแดปเตอร์ใหม่ไอคอนต้องห้ามยังคงมีอยู่ (นั่นคือdrawableLeft
ไม่ได้ถูกวาดขึ้นใหม่) คุณรู้วิธีนำไปใช้notifyDataSetChanged
กับdrawableLeft
, โดยไม่ทำลูปหรือไม่? ขอบคุณ!