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

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

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

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

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的跳转 显示启动和隐式启动

 

 

上一篇:Android FlexboxLayout布局属性详解,华为移动应用开发平台


下一篇:qt 插件系统