如果我的 String value(from) 为空,我想调用不同的活动,反之亦然:
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);
}
出于某种原因,我的 Condition 无法正常工作,因此需要专家视图。
谢谢,
阿里