如何移动到android中的新活动?

时间:2014-01-03 00:55:04

标签: java android eclipse android-intent android-activity

我见过人们发布的一些解决方案,但我找不到代码中的缺陷。它在开幕时崩溃了。

这是我的主要活动。

public class MainActivity extends Activity 
{
    Button guy, girl;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        guy = (Button) findViewById(R.id.bGuy);
        girl = (Button) findViewById(R.id.bGirl);

        guy.setOnClickListener(new View.OnClickListener() {
            public void onClick(View aView)
            {
                Intent toAnotherActivity = new Intent(aView.getContext(), ScreenGuy.class);
                startActivityForResult(toAnotherActivity, 0);
            }
        });
    }   
}   

它的.xml

<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context=".MainActivity" >

<TextView
    android:id="@+id/get_over"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentTop="true"
    android:layout_centerHorizontal="true"
    android:layout_marginTop="50dp"
    android:text="@string/get_over"
    android:textSize="20sp" />

<Button
    android:id="@+id/bGuy"
    android:layout_width="120dp"
    android:layout_height="40dp"
    android:layout_alignLeft="@+id/get_over"
    android:layout_below="@+id/get_over"
    android:layout_marginTop="66dp"
    android:text="@string/guy" 
    android:onClick="sendMessage"
     />

<Button
    android:id="@+id/bGirl"
    android:layout_width="120dp"
    android:layout_height="40dp"
    android:layout_alignBaseline="@+id/bGuy"
    android:layout_alignBottom="@+id/bGuy"
    android:layout_alignRight="@+id/get_over"
    android:text="@string/girl"
     />

我想在“盖伊”的按钮上移动另一个屏幕。

3 个答案:

答案 0 :(得分:2)

Intent intent = new Intent(MainActivity.this, ScreenGuy.class);
startActivity(intent);
编辑:就像这样,因为如果你这么说,它指的是onclick监听器类的上下文,而不是活动

答案 1 :(得分:2)

使用此:

Intent i = new Intent(FirstActivity.this, SecondActivity.class);
startActivity(i);

您不会传递所单击视图的上下文,而是传递应用程序的上下文。

答案 2 :(得分:2)

改变这个:

Intent toAnotherActivity = new Intent(aView.getContext(), ScreenGuy.class);
startActivityForResult(toAnotherActivity, 0);

到此:

Intent toAnotherActivity = new Intent(MainActivity.this, ScreenGuy.class);
startActivity(toAnotherActivity);

对于您所说的内容,您无需启动活动以获取结果。此外,您正在传递Intent错误的上下文:aView.getContext()。将它传递给 class 上下文。