I am a noob and have no one to help me so please forgive my ignorance. 1) I have three menus on main activity (three buttons like read, about and info). I used intent for one of the buttons. But how do I redirect the other two buttons to specific activities (view only)
public void onClick(View view) {
Intent i = new Intent(this, Main2Activity.class);
startActivity(i);
}
2) What widget should I use to display a page of article within an activity? I have used plain text but unable to format it.
Thanks for the kind help.