Hey everyone,
First, I'm completely new to this whole developing thing, so far, i'm a fan.
Second, My issue.
I'm trying to link two Views together. By view (I think it's called a view), I mean I'm at a home screen, push a button, and i'm at another screen with buttons, then depending on which one is pushed, another view, and so on. The closet thing I found to it was in the API demo Redirect. I've completely dissected the demo and done the Hello World's but can't figure out how to link the two screens.
I can post codes of the demo or my project if need be, but I think this issue has something to do with my Button line. I'm using:
Button button = (Button)findViewById(R.id.start);
button.setOnClickListener(onClickListener);
I think what's in red, is somehow causing my issue.
Any words of wisdom are welcomed...
First, I'm completely new to this whole developing thing, so far, i'm a fan.
Second, My issue.
I'm trying to link two Views together. By view (I think it's called a view), I mean I'm at a home screen, push a button, and i'm at another screen with buttons, then depending on which one is pushed, another view, and so on. The closet thing I found to it was in the API demo Redirect. I've completely dissected the demo and done the Hello World's but can't figure out how to link the two screens.
I can post codes of the demo or my project if need be, but I think this issue has something to do with my Button line. I'm using:
Button button = (Button)findViewById(R.id.start);
button.setOnClickListener(onClickListener);
I think what's in red, is somehow causing my issue.
Any words of wisdom are welcomed...