3
我有一個ImageButton。代碼是 -Android - 如何以編程方式更改ImageButton的寬度?
ImageButton shareButton = new ImageButton(this);
shareButton.setBackgroundResource(android.R.drawable.ic_menu_share);
RelativeLayout.LayoutParams shareParams = new RelativeLayout.LayoutParams(LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT);
shareParams.addRule(RelativeLayout.ALIGN_PARENT_RIGHT, navigationLogo.getId());
shareButton.setLayoutParams(shareParams);
我需要更改它的寬度。但ImageButton和佈局參數都沒有setWidth方法。看了很多網上沒有答案。