android:drawableTop Button上顯示小圖片

在xml文件中,Button上顯示圖片可以設置android:drawableTop,

在程序中可以通過下述代碼:

final Drawable drawableTop = getResources().getDrawable(R.drawable.menu_over);
 
btnByCust.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
 btnByCust.setCompoundDrawablesWithIntrinsicBounds(null, drawableTop , null, null);
        }
    });
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章