我在执行我的应用程序时在logcat中收到此消息。
活动com.jeslomo.judokatium_2.CinturonActivity已泄露 ServiceConnection com.google.android.youtube.player.internal.r$e@42201a30那是 最初绑在这里
我尝试加载youtube的意图:
Intent intent = YouTubeStandalonePlayer.createVideoIntent(acty, API_KEY,videoId,0,false,false); acty.startActivity(意向);
但视频正确加载。
“acty”是我传递给BaseAdapter以加载视频的活动。
我该如何解决?
谢谢!
P.D:抱歉我的英语不好。
答案 0 :(得分:2)
请尝试这个希望它的工作: 在第二页出现时加载api,然后启动YouTube API。不要将您的活动作为上下文提供,而是尝试向api提供应用程序上下文。
Intent intent = YouTubeStandalonePlayer.createVideoIntent(getApplicationContext(), API_KEY , videoId, 0, false, false);
acty.startActivity(intent);