我开发了一个游戏libgdx
,我试图在其中使用Intent
. 当我单击游戏中的共享按钮时,会显示意图活动。问题是即使我单击后退按钮,活动也会不断弹出。我无法关闭活动并返回我的游戏屏幕。Android 代码如下,
public class MainActivity extends AndroidApplication implements AndroidIntent{
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
AndroidApplicationConfiguration cfg = new AndroidApplicationConfiguration();
cfg.useGL20 = true;
cfg.useAccelerometer = true;
cfg.useCompass = false;
initialize(new MyGame(this), cfg);
}
@Override
public void share() {
Log.d("magicwords", "Sharing the game");
Intent intent = new Intent(Intent.ACTION_SEND);
intent.setType("text/plain");
intent.putExtra(Intent.EXTRA_TEXT, "this is the status line");
startActivity(Intent.createChooser(intent, "Share using"));
}
}
AndroidIntent
是我的界面有share()
。