美文网首页
页面跳转

页面跳转

作者: 71150ce14a00 | 来源:发表于2016-05-24 16:09 被阅读63次

    android:layout_below="@+id/retingbar"

    android:id="@+id/button1"

    android:layout_width="match_parent"

    android:layout_height="wrap_content"

    android:onClick="OnClick"

    android:text="跳转"

    Activity:

    public voidOnClick(View view) {

    Log.e("button","button");

    Intent intent=newIntent(this,TwoPage.class);//方法1

    startActivity(intent);

    }

    //页面返回

    Intent in=getIntent();

    //设置返回结果成功

    setResult(RESULT_OK, in);

    //关闭当前activity

    finish();

    相关文章

      网友评论

          本文标题:页面跳转

          本文链接:https://www.haomeiwen.com/subject/anuzrttx.html