[java] 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);


답변

간단히 시도해 볼 수도 있습니다

txtVw.setCompoundDrawablesWithIntrinsicBounds(R.drawable.smiley, 0, 0, 0);


답변

Kotlin Version

아래 스 니펫을 사용하여 버튼에 드로어 블 왼쪽을 추가하십시오.

val drawable = ContextCompat.getDrawable(context, R.drawable.ic_favorite_white_16dp)
button.setCompoundDrawablesWithIntrinsicBounds(drawable, null, null, null)

.

Important Point in Using Android Vector Drawable

Android 벡터 드로어 블을 사용 중이고 21 미만의 API에 대한 이전 버전과의 호환성을 원할 경우 다음 코드를 추가하십시오.

응용 프로그램 수준에서 build.gradle:

android {
    defaultConfig {
        vectorDrawables.useSupportLibrary = true
    }
}

응용 프로그램 클래스에서 :

class MyApplication : Application() {

    override fun onCreate() {
        super.onCreate()

        AppCompatDelegate.setCompatVectorFromResourcesEnabled(true)
    }

}


답변

나를 위해, 그것은 효과가 있었다 :

button.setCompoundDrawablesWithIntrinsicBounds(com.example.project1.R.drawable.ic_launcher, 0, 0, 0);


답변

myEdtiText.setCompoundDrawablesWithIntrinsicBounds(R.drawable.smiley, 0, 0, 0);


답변

나는 이걸했다:

 // Left, top, right, bottom drawables.
            Drawable[] drawables = button.getCompoundDrawables();
            // get left drawable.
            Drawable leftCompoundDrawable = drawables[0];
            // get new drawable.
            Drawable img = getContext().getResources().getDrawable(R.drawable.ic_launcher);
            // set image size (don't change the size values)
            img.setBounds(leftCompoundDrawable.getBounds());
            // set new drawable
            button.setCompoundDrawables(img, null, null, null);


답변

당신이 사용하는 경우 drawableStart , drawableEnd , drawableTop 또는 drawableBottom을 ; ” setCompoundDrawablesRelativeWithIntrinsicBounds ” 를 사용해야합니다.

edittext.setCompoundDrawablesRelativeWithIntrinsicBounds(0, 0, R.drawable.anim_search_to_close, 0)