
    /**
     * 跳转到首页的公共方法
     * */
    public void ToIndexpage(View v){
        //设置跳转的页面
        Intent intent = new Intent(this, MainActivity.class);
        //实行跳转
        startActivity(intent);
    }

【Android】DeepLink
阅读 31
2023-12-17

    /**
     * 跳转到首页的公共方法
     * */
    public void ToIndexpage(View v){
        //设置跳转的页面
        Intent intent = new Intent(this, MainActivity.class);
        //实行跳转
        startActivity(intent);
    }

相关推荐
精彩评论(0)