I quite new/unfamiliar with Java so forgive me if my terminology is a bit off.
To summarize, I have buttons in my XML file which I'd like to take me to another page (like a hyperlink would in HTML, etc.) But when entering this, an error appears with the two setActivity() parts of the code:
The method
setActivity()is undefined for the typenew View.OnClickListener(){}
Here is the code for the class:
public class HomePage extends Activity {
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_home_page);
Button button1 = (Button)setActivity().findViewById(R.id.bLogin);
button1.setOnClickListener(new View.OnClickListener() {
public void onClick(View v) {
Intent i = new Intent(setActivity(), LinkHome.class);
startActivity(i);
}
});
}
...
Can anyone give me any advice to get around with this?
