• After 15+ years, we've made a big change: Android Forums is now Early Bird Club. Learn more here.

Apps SMS App development

bokerinni

Lurker
Hello all,

I am pretty new to Android development. I need some sort of help for development.
I have developed the screens I need to use.
Now the problem is that I need to pass the values from login screen (username and password) to another class.
I am using custom made api that makes HTTP request using those credentials.

Please help me guys,
 
My first concern is why you need to login to use an sms app, but that aside, are you trying to send the values to a new Activity or what?
 
Yes. I am trying to pass the values from login screen to another class and another activity.
User logs in, and then his username and password are used in another class in HTTP API URL.

If we can solve this problem, we solved 90% of the app.

Thanks for help anyway.

;)
 
To pass data from one activity, simply add the data to the Intent used to start the new activity using the put***() methods
 
Back
Top Bottom