프로그래밍 언어/Android

Android 버튼에서 drawableLeft를 프로그래밍 방식으로 설정하는 방법

Rateye 2021. 7. 23. 11:42
728x90
반응형
질문 : Android 버튼에서 drawableLeft를 프로그래밍 방식으로 설정하는 방법은 무엇입니까?

버튼을 동적으로 만들고 있습니다. 먼저 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);

 

반응형
답변

setCompoundDrawables 메소드를 사용할 수 있습니다. 여기 에서 예를 참조하십시오. setBounds 를 사용하지 않고 사용했고 작동했습니다. 어느 쪽이든 시도 할 수 있습니다.

업데이트 : 링크가 다운되는 경우 여기에 코드 복사

Drawable img = getContext().getResources().getDrawable(R.drawable.smiley);
img.setBounds(0, 0, 60, 60);
txtVw.setCompoundDrawables(img, null, null, null);

또는

Drawable img = getContext().getResources().getDrawable(R.drawable.smiley);
txtVw.setCompoundDrawablesWithIntrinsicBounds(img, null, null, null);

또는

txtVw.setCompoundDrawablesWithIntrinsicBounds(R.drawable.smiley, 0, 0, 0);
출처 : https://stackoverflow.com/questions/4502605/how-to-programmatically-set-drawableleft-on-android-button
728x90
반응형