android应用程序如何实现界面跳转?

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了android应用程序如何实现界面跳转?相关的知识,希望对你有一定的参考价值。

例如我现在只有一个mainActivity,我怎样写代码才能创建一个按钮(图片也行),
然后点击这个按钮(图片)跳转到Activity2界面
求大神详细解说

你先写一个xml文件 内容是<Button xmlns:android="http://scehmas.android.com/apk/res/android" android:layout_widht="wrap_content" android:layout_height="wrap_content" android:text="按钮" android:id="@+/btn"/>
然后再第一个activity 中通过findViewById()得到这个button button.setOnClickListener(new OnClickListener()
public void onClick(View view)
Intent intent=new Intent();
intent.setCass(Activity1.this,activity2.class)
startAtivity(intent);
);
ok 这样就行了 纯手敲望采纳。
参考技术A

    先在AndroidManifest.xml里面注册了Activity2
    <activity android:name=".Activity2" ></activity>

    添加按钮事件      

            final LinearLayout layout2 = new LinearLayout(this);
            layout2.setOrientation(LinearLayout.VERTICAL);
            Button bt1 = new Button(this);
            layout2.addView(bt1);
            bt1.setText("按钮1");
            setContentView(layout2);
            bt1.setOnClickListener(new View.OnClickListener()
                @Override
                public void onClick(View v)
                    // TODO Auto-generated method stub
                    Intent intent = new Intent();
                    intent.setClass(mainActivity.this, Activity2.class);
                    startActivity(intent);
               
            );

本回答被提问者采纳

以上是关于android应用程序如何实现界面跳转?的主要内容,如果未能解决你的问题,请参考以下文章

android 如何 跳转到 权限管理界面

android3个界面如何跳转

如何指定Android中的浏览器跳转界面?

Android——实现欢迎界面的自动跳转(转)

Android studio按钮跳转代码break

Android控制UI界面