这似乎是一个简单的功能,但我已经阅读并阅读了无数的教程,并多次尝试使其工作,我仍然没有成功。
我有一个名为“main”的开放式xml页面 我有第二个xml页面标题为“菜单” 我有第1个标题为“ButtontestingActivity.java”的java活动 我有第二个标题为“菜单”的java活动
在ButtontestingActivity.java中我有......
package com.package2.Buttontesting;
import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
public class ButtontestingActivity extends Activity {
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
Button Button1 = (Button) findViewById(R.id.sweetness);
Button1.setOnClickListener(new View.OnClickListener() {
public void onClick(View v) {
startActivity(new Intent("com.package2.Buttontesting.MENU"));
}
});
}
@Override
protected void onPause() {
super.onPause();
}
}
在main.xml中我有......
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@drawable/splash"
android:orientation="vertical" >
<Button
android:id="@+id/sweetness"
android:layout_width="40dp"
android:layout_height="78dp"
android:layout_marginLeft="52dp"
android:layout_marginTop="40dp"
android:visibility="visible"
/>
</LinearLayout>
在清单中我有......
<application
android:icon="@drawable/face"
android:label="@string/app_name" >
<activity
android:label="@string/app_name"
android:name=".ButtontestingActivity" >
<intent-filter >
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:label="@string/app_name"
android:name=".Menu" >
<intent-filter >
<action android:name="com.package2.Buttontesting.MENU" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
我的menu.xml中有android:background =“@ drawable / menu”
当我在AVD中安装应用程序时,第一个布局显示正常,但当我按下按钮打开第二个布局时,AVD会发送消息
“应用程序Buttontesting(进程com.package2.Buttontesting)意外停止。请再试一次”
然后我回到应用菜单。
答案 0 :(得分:2)
试试这个:
Intent intent = new Intent(ButtontestingActivity.this,Menu.class);
startActivity(intent);
也从清单文件中删除它:
<intent-filter >
<action android:name="com.package2.Buttontesting.MENU" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
之后
<activity
android:label="@string/app_name"
android:name=".Menu" >
答案 1 :(得分:0)
使用
startActivity(new Intent(ButtontestingActivity.this, Menu.class));
或
startActivity(new Intent(ButtontestingActivity.this, com.package2.Buttontesting.Menu.class));
并且还会从菜单活动中删除intent-filter块,因为app只能有一个启动器活动。