שאלה ב java/android
public class Const {
public static int screenWidth;
public static int screenHeight;
//button
int buttonWidth = screenWidth/8;
int buttonHeight = screenHeight/5;
}
האם אני אקבל את buttonWidth כנדרש או שזו שגיאה? (את screenWidth אני מעדכנת ביצירת ה activity ורק לאחר מכן משתמשת ב buttonWidth )
public class Const {
public static int screenWidth;
public static int screenHeight;
//button
int buttonWidth = screenWidth/8;
int buttonHeight = screenHeight/5;
}
האם אני אקבל את buttonWidth כנדרש או שזו שגיאה? (את screenWidth אני מעדכנת ביצירת ה activity ורק לאחר מכן משתמשת ב buttonWidth )