-2

我正在开发一个安卓应用程序,在注册时,用户可以选择一种类型,“个人”或“公司”。当他选择公司时,会打开一个新活动,他可以在其中输入有关公司的信息。请帮助我如何导航到新活动。我试过但没有得到任何解决方案。

4

2 回答 2

0

实现监听器到微调器,然后检查点击位置,如果是公司使用意图打开一个新活动。

Intent i = new Intent(MainActivity.this, SecondClass.class);
startAtivity(i);
于 2013-01-05T03:51:31.427 回答
0

设置setOnItemSelectedListener,如果选择某事onItemSelected被调用,否则onNothingSelected被调用

 s.setOnItemSelectedListener(new OnItemSelectedListener() {

            @Override
            public void onItemSelected(AdapterView<?> arg0, View arg1,
                    int arg2, long arg3) {
                 String str = (String) arg0.getSelectedItem();

                             //here print selected value...
                 System.out.println("String is :: " + str);

                             //And StartActivity here...

                    Intent intent = new Intent(YourActivity.this,SecondActivity.class);
                    startActivity(intent);

            }

            @Override
            public void onNothingSelected(AdapterView<?> arg0) {
                // TODO Auto-generated method stub

            }
        });

我希望这能帮到您。

于 2013-01-05T03:53:55.763 回答