我想設置一個ImageButton
的width
和height
在Java Class
,所述按鈕的寬度應該是width of the display/4
,按鈕的高度應是height of the display/4
。(機器人)設置寬度/高度(圖像 - )按鈕
代碼:
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
Display display = getWindowManager().getDefaultDisplay();
Point size = new Point();
display.getSize(size);
int width = size.x;
int height = size.y;
ImageButton button = (ImageButton) findViewById(R.id.imageButton);
// button.setWidth(width/4)
// button.setHeight(height/4)
}
顯然有一個名爲setWidth()
或setHeight()
按鈕沒有方法,所以我怎麼能做到呢?
多數民衆贊成在多大程度上我做到了,但我不知道它是否會根據屏幕大小的差異相應地調整它,或者如果這只是將其設置爲所有屏幕。 – soul6942