标签: android
我想将Rect设置为最终版并将其设置为.top .left等,并且只能从中读取。 是否可以在初始化时设置尺寸?
Rect
.top
.left
public static final Rect myRect = new Rect();
答案 0 :(得分:1)
根据评论,它是通过使用备用构造函数完成的:
public static final Rect myRect = new Rect(int left, int top, int right, int bottom);
See documentation