打开第二个活动并且无法启动的Android问题

时间:2010-04-12 14:49:16

标签: android android-manifest

请耐心等待,因为我正在学习Android。 我想要做的是当我点击一个按钮时打开一个活动。 这是我主要活动中的代码

public class MainPage extends Activity {
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.main);

    Button restaurants = (Button) findViewById(R.id.widget88);
    restaurants.setOnClickListener(new View.OnClickListener() {
        public void onClick(View view) {
            Intent myIntent = new Intent(view.getContext(), AZRestaurants.class);
            startActivityForResult(myIntent, 0);               
        }

    });

    //Button location = (Button) findViewById(R.id.location);
    //location.setOnClickListener(new View.OnClickListener() {
        //public void onClick(View view) {
        //  Intent myIntent = new Intent(view.getContext(), Location.class);
        //  startActivity(myIntent);
        //}
  //  });
}

当我实现第一个按钮(restuarant)时,程序启动没问题。

但是当我尝试实现我已注释掉的按钮时,它无法启动。 是的,我已将活动添加到清单文件中。

有人可以帮我吗?

感谢。

0 个答案:

没有答案