in android how we save one value to acces on each page,
for example I am making a login app
and I need user_id to each page for access data from db by this id
or
I am in home page and I want to store user_id ,and I need to access this on any page ,
for example home=>profile=>
change password,
I want to access user_id
here to change password
I am trying
Intent slideactivity = new Intent(login.this, LoginMenu.class);
slideactivity.putExtra("uName", n);
but When I access it it give empty value on create_password activity