I've been doing the sending of a string data to another activity is called a caculate and from that to history but it has not worked for me can someone tell me what the inconvenience will be. Thanks!
the variables are declared
String d;
String value, x;
Within a function called calculate I am performing this operation.
x = value;
Intent miinten = new Intent(Calculate.this, Hitorial.class);
miinten.putExtra("x",x);
In the other class history I am receiving the data inside a button to see history as well.
When performing the execution, the following appears in debug when I perform the action of viewing history and pressing the button.
Can someone tell me who is does not receive the parameter because? and how can I solve it? Thanks