我是靠谱客的博主 还单身发箍,最近开发中收集的这篇文章主要介绍(YM学习笔记)Android--Fragment跳转到Activity的方法,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

只需在对应的Fragment.java文件中,做如下的操作:

@Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container,
                             Bundle savedInstanceState) {
        //默认是:return inflater.inflate(R.layout.fragment_index, container, false);
        //先定义一个 View ,而不返回。
        final View view =  inflater.inflate(R.layout.fragment_my, container, false);
        //通过id,绑定退出登录按钮组件
        Button mBtnLogout = view.findViewById(R.id.btn_logout);
        //设置退出登录的点击事件
        mBtnLogout.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View view) {
                Intent intent = new Intent(getActivity(),LoginActivity.class);
                startActivity(intent);
            }
        });
        //返回 view
        return view;
    }

最后

以上就是还单身发箍为你收集整理的(YM学习笔记)Android--Fragment跳转到Activity的方法的全部内容,希望文章能够帮你解决(YM学习笔记)Android--Fragment跳转到Activity的方法所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(36)

评论列表共有 0 条评论

立即
投稿
返回
顶部