如何使用DroidGap更改活动?有没有办法获得当前的上下文,即使我们正在使用DroidGap?
public class MainActivity extends DroidGap {
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
if (isOnline() == true) {
super.loadUrl("http://myurl.com");
}
else {
Intent myIntent = new Intent(SOME CONTEXT...DroidGap.getContext(), LoadScreen.class);
startActivity(myIntent);
finish();
}
}
答案 0 :(得分:1)
这解决了我的问题Intent myIntent = new Intent(getContext(), LoadScreen.class);