1
checkbox
です。固定サイズです。 checkbox
デフォルトのディップサイズが不思議です。または、どのようにデフォルトのディップサイズを取得できますか?チェックボックスのデフォルトサイズは
checkbox
です。固定サイズです。 checkbox
デフォルトのディップサイズが不思議です。または、どのようにデフォルトのディップサイズを取得できますか?チェックボックスのデフォルトサイズは
あなたはonWindowFocusChanged
メソッドをオーバーライドすることができますし、その中にあなたがプログラムで
@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
}
を
CheckBox
幅/高さを計算することができます