Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Button to redirect to different xml/java page

Status
Not open for further replies.

Rowse

Technical User
Dec 20, 2002
62
GB
Hi,

I'm new to this and have been looking on the net for a way to press a button and go from a login screen to a "next page" screen but cant seem to work it out.

Can any one suggest anything?
I've tried Intent, but this just gives me lots of errors.

Cant find the solution anywhere

Supplier of Asset Financial Software
Web based, and pocket pc compatible
b3computing.co.uk
 
how did you applied the intent?
theres actually three use of intent
1. redirect directly to a specified xml
2. redirect to a specified xml given the name of the activity in the manifest
3. redirect to a specified xml carriying a string/information(data type:string)
using "INTENT" is the only way(as of my knowledge) going "NEXT PAGE"

HTH
Dexter
 
I've used:
Intent myintent = new Intent(this, MainActivity.class);
startActivity(myintent);
many thanks

Supplier of Asset Financial Software
Web based, and pocket pc compatible
b3computing.co.uk
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top