C/C++教程

Android中activity的跳转 显示启动和隐式启动

本文主要是介绍Android中activity的跳转 显示启动和隐式启动,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

第一步

在layout中创建activity_second

<TextView
    android:id="@+id/tv_1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="界面1"
    tools:layout_editor_absoluteX="181dp"
    tools:layout_editor_absoluteY="317dp"
    tools:ignore="MissingConstraints" />

第二步

在Java中进行关联layout.activity_second
//用onCreate方法创建布局文件,再通过setContentView进行关联layout下的activity界面

//注意再次之前先创建activity哦! 

public class Second extends Activity {
    @Override
    protected void onCreate(@Nullable Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_second);
    }
}

第三步

在Android.Manifest.xml文件中注册

<activity android:name=".Second"
    android:exported="true">
    <intent-filter>
        <action android:name="android.intent.action.ALL_APPS"/>
        <category android:name="android.intent.category.DEFAULT"/>
    </intent-filter>
</activity>

至此才算是一个activity创建完毕,但是要实现界面间的跳转还需要些准备。

 

首先咱需要一个Button控件来点击,这个不难,但在java文件夹要实现跳转这个动作

 

 

这篇关于Android中activity的跳转 显示启动和隐式启动的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!