onPause()
MainActivityクラスでイベントを作成する必要があります。どういうわけか、このような種類のものを自動的に生成することは可能ですか、それともキーボードでevrythingを入力する必要がありますか?
現在、私のクラスは次のようになっています。
package com.example.llk;
import android.os.Bundle;
import android.app.Activity;
import android.view.Menu;
import android.widget.Toast;
public class MainActivity extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
Toast.makeText(this,"onCreate()", Toast.LENGTH_LONG).show();
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.activity_main, menu);
return true;
}
}
onCreateイベントとonCreateOptionsMenuイベントがありますが、onPauseはありません。IDEはそれを自動的に生成できますか?