checkbox
具有固定大小。我想知道checkbox
默认倾角大小。或者我如何获得默认倾角尺寸。
答案 0 :(得分:0)
您可以覆盖onWindowFocusChanged
方法,在其中可以以编程方式计算CheckBox
宽度/高度
@Override
public void onWindowFocusChanged(boolean hasFocus) {
super.onWindowFocusChanged(hasFocus);
int checkBoxWidthInPx = mCheckBox.getWidth(); // return the width of your checkbox, in pixels.
int checkBoxHeightInPx = mCheckBox.getHeight();
// conver px to dp
int checkBoxWidthInDp = checkBoxWidthInPx / this.getResources().getDisplayMetrics().density
int checkBoxHeightInDp = checkBoxHeightInPx / this.getResources().getDisplayMetrics().density
}