在我的 android 应用程序的主页中,我添加了 OptionsMenu。What i want is when the option "ContactUs" is selected a new Activity called "ContactUs" should get called.
public boolean onOptionsItemSelected(MenuItem item) {
super.onOptionsItemSelected(item);
if (item.getTitle().toString().equals("ContactUs")) {
ContactUs contact = new ContactUs(Home.this);
}
return true;
}
当 ContactUs 活动打开时,它的布局应该会显示出来:
public class ContactUs extends Activity{
private Context CONTEXT;
public CustomEqualizer(Context c){
this.CONTEXT = c;
setContentView(R.layout.contactus);
}
}
但问题是在调用 onCreate 方法之前不会显示布局。我的问题是如何在没有 startActivity 的情况下从 Home 调用 ContactUs 选项?