請問eclipse 裡邊的bottom 組件怎麼實現同時顯示文字和圖片?
在布局文件中使用**drawableLeft、drawableBottom**等屬性。
代碼中通過如下設置即可:
Drawable drawable= getResources().getDrawable(R.drawable.drawable);
drawable.setBounds(0, 0, drawable.getMinimumWidth(), drawable.getMinimumHeight());
editview.setCompoundDrawables(drawable,null,null,null);