无法在选项菜单中打开活动

问题描述 投票:0回答:3

我有选项菜单,该菜单可以成功打开并带有图标,但是当我单击它时,它什么也不做,而且LogCat和错误日志中都没有任何内容。这是我的主要活动和电子邮件活动。我在email.xml中有所有按钮,在gameoptions.xml中有一项。请帮助。

private ListView lv1; 

@Override
public boolean onCreateOptionsMenu(Menu menu) {
    MenuInflater inflater = getMenuInflater();
    inflater.inflate(R.menu.gameoptions, menu);
    menu.findItem(R.id.btn_market);
    return true;}

@Override
public boolean onOptionsItemSelected(MenuItem item) {
    switch (item.getItemId()) {
        case R.id.btn_market:
            startActivity(new Intent(getApplicationContext(),EmailActivity.class));
            return true;
        default:
            return super.onOptionsItemSelected(item);
    }
}

电子邮件活动:

public class EmailActivity extends Activity {
    Button send;
    EditText address, subject, emailtext;

    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        requestWindowFeature(Window.FEATURE_NO_TITLE); 
        setContentView(R.layout.email);

        Button b=(Button)this.findViewById(R.id.btn_market);
        b.setOnClickListener(new OnClickListener(){
            public void onClick(View arg0){ 
                Uri address=Uri.parse("https://play.google.com/store/apps/details?id=ru.kenzhekul.tashiev&hl=ru");
                Intent surf=new Intent(Intent.ACTION_VIEW, address);
                startActivity(surf);
            }
        }); 

        send = (Button) findViewById(R.id.emailsendbutton);
        address = (EditText) findViewById(R.id.emailaddress);
        //subject = (EditText) findViewById(R.id.emailsubject);
        emailtext = (EditText) findViewById(R.id.emailtext);

        send.setOnClickListener(new OnClickListener() {

            @Override
            public void onClick(View v) {
                final Intent emailIntent = new Intent(android.content.Intent.ACTION_SEND);
                emailIntent.setType("plain/text");
                emailIntent.putExtra(android.content.Intent.EXTRA_EMAIL,new String[] { address.getText().toString() });
                emailIntent.putExtra(android.content.Intent.EXTRA_TEXT,emailtext.getText().toString());
                EmailActivity.this.startActivity(Intent.createChooser(emailIntent, "Отправка письма"));
            }
        });
    }
}
android eclipse android-optionsmenu
3个回答
2
投票

startActivity(new Intent(getApplicationContext(),EmailActivity.class));行是错误的。

您无法在编写时使用应用程序上下文启动活动。您应该传递活动实例而不是应用程序上下文。

编辑:如果您在活动的课程中,请尝试通过this


1
投票

您应该传递this而不是getApplicationContext()


0
投票

在您的方法中[[onOptionsItemSelected尝试删除switch语句,然后简单地将Log放到这里,我想问题是按钮ID。

© www.soinside.com 2019 - 2024. All rights reserved.