私は動的にボタンを作成しています。私は最初に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
を使わずにこれを使いましたが、うまくいきました。あなたはどちらの方法でも試すことができます。
UPDATE:リンクが切れた場合は、ここにコードをコピーする
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);
私にとっては、それはうまくいった:
button.setCompoundDrawablesWithIntrinsicBounds(com.example.project1.R.drawable.ic_launcher, 0, 0, 0);
myEdtiText.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 vector drawableを使用していて、API 21との下位互換性が必要な場合は、以下を追加してください。コード:
アプリレベルではbuild.gradle
:
Android {
defaultConfig {
vectorDrawables.useSupportLibrary = true
}
}
アプリケーションクラスの場合:
class MyApplication : Application() {
override fun onCreate() {
super.onCreate()
AppCompatDelegate.setCompatVectorFromResourcesEnabled(true)
}
}
これは私がしました:
// 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);
@JérémyReynaudが指摘しているように、この 答え で説明されているように、他のドロアブルの値を変更せずに左ドロアブルを設定する最も安全な方法です。右、下)は、 setCompoundDrawablesWithIntrinsicBounds を使用して、ボタンからの以前の値を使用します。
Drawable leftDrawable = getContext().getResources()
.getDrawable(R.drawable.yourdrawable);
// Or use ContextCompat
// Drawable leftDrawable = ContextCompat.getDrawable(getContext(),
// R.drawable.yourdrawable);
Drawable[] drawables = button.getCompoundDrawables();
button.setCompoundDrawablesWithIntrinsicBounds(leftDrawable,drawables[1],
drawables[2], drawables[3]);
だからあなたの前のドロアブルはすべて保存されます。
以下は、編集テキストの左側のアイコンの色を変更して左側に設定する方法です。
Drawable img = getResources().getDrawable( R.drawable.user );
img.setBounds( 0, 0, 60, 60 );
mNameEditText.setCompoundDrawables(img,null, null, null);
int color = ContextCompat.getColor(this, R.color.blackColor);
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.Lollipop) {
DrawableCompat.setTint(img, color);
} else {
img.mutate().setColorFilter(color, PorterDuff.Mode.SRC_IN);
}
役に立つかもしれません:
TextView location;
location=(TextView)view.findViewById(R.id.complain_location);
//in parameter (left,top,right,bottom) any where you wnat to put
location.setCompoundDrawablesWithIntrinsicBounds(0, 0, R.drawable.arrow,0);
私のために働いた。描画可能を右側に設定するには
tvBioLive.setCompoundDrawablesWithIntrinsicBounds(0, 0, R.drawable.ic_close_red_400_24dp, 0)
drawableStart、drawableEnd、drawableTop、またはdrawableBottomを使用している場合;必ず "setCompoundDrawablesRelativeWithIntrinsicBounds"を使用してください。
edittext.setCompoundDrawablesRelativeWithIntrinsicBounds(0, 0, R.drawable.anim_search_to_close, 0)
これを試して:
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.JELLY_BEAN) {
fillButton[i].setBackground(getBaseContext().getResources().getDrawable(R.drawable.drawable_name));
}
else{
fillButton[i].setBackgroundColor(Color.argb(255,193,234,203));
}