I wanted to call a different activity if my String value(from) is empty and vice verse:
String[] from = new String[] { "name" };
if (from.length >= 1)
{
int[] to = new int[] { R.id.countryTextView111};
conAdapter = new SimpleCursorAdapter(CountryList.this, R.layout.countrylist, null, from, to);
setListAdapter(conAdapter); // set adapter
}
else
{
Intent intent = new Intent(getApplicationContext(), EmailSettings.class);
startActivity(intent);
}
For some reason my Condition isn't working so need an Expert view.
Thanks,
Ali
