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
반응형
'프로그래밍 언어 > Android' 카테고리의 다른 글
Android : 소프트 키보드가 내 보기를 밀어 올리는 것 방지하는 방법 (0) | 2021.07.29 |
---|---|
Android에서 내 애플리케이션의 메모리 사용량을 확인하는 방법 (0) | 2021.07.27 |
Android에서 현재 시간과 날짜를 얻는 방법 (0) | 2021.07.21 |
Android Studio에서 'assets'폴더의 올바른 위치 (0) | 2021.07.21 |
내 Android 애플리케이션에서 직접 Google Play 스토어를 여는 방법 (0) | 2021.07.20 |