1

我想将屏幕坐标插入到 hashmap 数据结构中意味着在 hashmap 中插入 setX(x) 和 setY(y) 值。我在这个应用程序中制作了一个android应用程序需要存储屏幕坐标。

4

1 回答 1

1

获取大小..

Display display = getWindowManager().getDefaultDisplay();
Point size = new Point();
display.getSize(size);
int width = size.x;
int height = size.y;

你可以参考这里

而对于哈希图

HashMap<Integer> meMap=new HashMap<Integer>();
meMap.put(width);
meMap.put(height);

给出的只是一个例子。你可以做相应的事情。其他参考

于 2012-05-12T06:45:45.887 回答