1

您如何使用 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();
    }
}
4

1 回答 1

1

这解决了我的问题Intent myIntent = new Intent(getContext(), LoadScreen.class);

于 2012-08-05T18:16:42.150 回答