android中怎么实现点击按钮进行页面的跳转

第一步:先创建好两个Activity。如图 android中怎么实现点击按钮进行页面的跳转_第1张图片
(PS:是创建Activity,不是创建java类。右击包名,找到new-->other-->android-->AndroidActivity。然后根据提示完成Activity的创建。系统会自动创建好两个Activity对应的布局文件,并会自动把Activity进行声明 android中怎么实现点击按钮进行页面的跳转_第2张图片
第二步:在activity_main.xml中添加一个button,id设置为btn1;
 
            android:id="@+id/textView1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginLeft="90dp"
        android:layout_marginTop="70dp"
        android:text="这是第一个界面" />
且在activity_test.xml中添加一个文本
        android:id="@+id/textView1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="这是第二页" />
第三步:打开MainActivity.java文件,并在onCreate()方法中写上一下代码
        Button  btn1 = (Button) findViewById(R.id.btn1);  
        btn1.setOnClickListener(new View.OnClickListener(){ 
         @Override 
         public void onClick(View v){ 
         //Intent是一种运行时绑定(run-time binding)机制,它能在程序运行过程中连接两个不同的组件。 
         //在存放资源代码的文件夹下下, 
         Intent i = new Intent(MainActivity.this , TestActivity.class); 
         //启动 
         startActivity(i); 
         } 
         });
android中怎么实现点击按钮进行页面的跳转_第3张图片 

以上操作即可完成点击按钮实现页面跳转功能。

你可能感兴趣的:(android,code)