i have problem with my android app, i searched but cannot find answer, i have this code:
public class Matematika extends ListActivity {
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
String[] mStrings = new String[]{"Mother", "Sister", "Brother"};
// Create an ArrayAdapter, that will actually make the Strings above appear in the ListView
this.setListAdapter(new ArrayAdapter<String>(this,
android.R.layout.simple_list_item_1, mStrings));
}
}
And i want to make for example this: I want to click on Mother and want to go next ListActivity (new activity via intent if is it real), ListActivity, where is another options….
Thanks very much.
1 Answer