我正在使用Bundle发送数据。
Bundle b = new Bundle();
b.putDouble("x", this.Location.X);
b.putDouble("y", this.Location.Y);
是否区分大小写?
答案 0 :(得分:3)
Bundle和其他Key Mapping机制区分大小写。
更多讨论see here
答案 1 :(得分:2)
看起来像一个简单的地图,所以可能。你为什么不测试它?
编辑:
关键是一个字符串。 "x".equals("X") == false