【发布时间】:2015-04-10 17:58:58
【问题描述】:
我在从保存到首选项文件的地图中获取值时遇到问题。我可以打印出地图中的键,但不能打印任何值。我认为这与我正在做的类型转换有关,但我已经尝试了我所知道的一切,但无法弄清楚。
我测试了我保存到首选项文件的地图中的值,它们的输出很好。
我尝试了以下建议,但没有帮助
这是我的代码
public class SetSettings {
private Actor actor;
private Actor hit;
private Sprite sprite;
private Sprite sprite2;
private Rectangle rect;
private boolean customHit = false;
private ShapeRenderer render = new ShapeRenderer();
public float y;
public float x;
Array<Actor> actors = GameScreen.buttons.stage.getActors();
public SetSettings() {
setOriginal();
setCustom();
rect = new Rectangle();
}
public void setOriginal() {
learnGame.ass.settings.get().clear();
float height = Gdx.graphics.getHeight();
float width = Gdx.graphics.getWidth();
// ui settings
java.util.Map<String, Coords> map = new HashMap<String, Coords>();
map.put("hpBar", new Coords(width - (learnGame.ass.hpBar.getWidth() * 1.02f), height - (height * .076f)));
map.put("hpBase", new Coords(learnGame.ass.hpBar.getX(), learnGame.ass.hpBar.getY()));
for (Entry<String, Coords> key : map.entrySet())
System.out.println(key.getValue().x); // works fine here
}
public void setCustom() {
java.util.Map<String, Coords> amap = (java.util.HashMap<String, Coords>) learnGame.ass.settings.get();
// Float[] nums = amap.get("hpBar");
for (Entry<String, Coords> key : amap.entrySet()) {
// /float t = key.getValue().x; // <-----------error here -- java.lang.String cannot be cast
System.out.println("6" + key.getKey());
// String xz = key.getValue();
}
}
public class Coords {
float x;
float y;
public Coords(float x, float y) {
this.x = x;
this.y = y;
}
}
}
【问题讨论】:
-
learnGame在哪里声明?learnGame.ass.settings的类型是什么? -
其类型为 Preferences
标签: java android dictionary libgdx