1

I'm using Bundle to send data.

Bundle b = new Bundle();
b.putDouble("x", this.Location.X);
b.putDouble("y", this.Location.Y);

Is key case sensitive?

Kostadin
  • 2,499
  • 5
  • 34
  • 58

2 Answers2

4

Bundle and other Key Mapping mechanism are case sensitive.

For more discussion see here

Community
  • 1
  • 1
Adil Soomro
  • 37,609
  • 9
  • 103
  • 153
2

Looks like a simple Map, so probably. Why don't you test it?

EDIT: The key is a String. "x".equals("X") == false

Jivings
  • 22,834
  • 6
  • 60
  • 101