谷歌播放服务mainactivity

时间:2013-05-12 22:18:28

标签: android google-play google-play-services

我已经实施了此网址上的Google Play服务演示代码:

https://github.com/kpbird/google-play-service/blob/master/src/com/kpbird/googleplayservice/MainActivity.java

一切正常。但是,如果在onCreate中调用函数getAccountNames(),则应用程序会在加载设置的内容视图之前瞬间闪烁。这就像有两个活动视图正在启动。

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
    txtAccount = (TextView) findViewById(R.id.txtAccount);
    txtToken = (TextView) findViewById(R.id.txtToken);
    getAccountNames();
}

为什么在getAccountNames()中放置onCreate会在应用程序启动时创建此视觉效果。

0 个答案:

没有答案