文字列値(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);
}
何らかの理由で私の状態が機能していないので、エキスパートビューが必要です。
ありがとう、
アリ