码迷,mamicode.com
首页 > 其他好文 > 详细

Fragment切换动画

时间:2014-07-18 22:20:22      阅读:258      评论:0      收藏:0      [点我收藏+]

标签:fragment   animation   

源码免费下载地址

package com.example.myFragmentAnimation;


import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.support.v4.app.Fragment;
import android.support.v4.app.FragmentActivity;
import android.support.v4.app.FragmentManager;
import android.view.View;
import android.view.Window;
import android.widget.Button;
import android.widget.ImageView;


public class MyActivity extends FragmentActivity {
    private Fragment[] fragments;
    private ImageView find_group_but;
    private ImageView find_user_but;
    private FragmentManager mFragmentManager = null;
    private Fragment mTextFragmentOne = null;
    /**
     * Called when the activity is first created.
     */
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        requestWindowFeature(Window.FEATURE_NO_TITLE);
        setContentView(R.layout.find_fragment_activity);
        initView();
    }
    /*
       初始化View
     */
    private void initView(){
        find_group_but=(ImageView)findViewById(R.id.find_group_but);
        find_user_but=(ImageView)findViewById(R.id.find_user_but);
        fragments=new Fragment[2];
        fragments[0]=getSupportFragmentManager().findFragmentById(R.id.fragment_FindGroup);
        fragments[1]=getSupportFragmentManager().findFragmentById(R.id.fragment_FindUser);
        removeFragment();
        addFragment();
        find_group_but.setEnabled(false);
        find_user_but.setEnabled(true);
        getSupportFragmentManager().beginTransaction().hide(fragments[1]).show(fragments[0]).commit();


    }






    //Fragment显示动画
    private void addFragment() {
        if (null == mFragmentManager) {
            mFragmentManager = getSupportFragmentManager();
        }




        android.support.v4.app.FragmentTransaction fragmentTransaction = mFragmentManager
                .beginTransaction();
        if(fragments[0].isHidden()==true){
            System.out.println("<<<<<<<000000");
            fragmentTransaction.setCustomAnimations(
                    R.anim.push_right_in,
                    R.anim.push_right_out,
                    R.anim.push_right_in,

                    R.anim.push_right_out);

//前俩个动画是显示动画,后俩个动画是隐藏动画

            mTextFragmentOne = new FindGroupFragment();
            //第一个参数显示fagment的控件ID,第二个参数控件的Java文件也就是Fragment
            fragmentTransaction.add(R.id.fragment_FindGroup,mTextFragmentOne);




        }if(fragments[1].isHidden()==true){
            System.out.println("<<<<<<<111111");
            fragmentTransaction.setCustomAnimations(
                    R.anim.push_left_in,
                    R.anim.push_left_out,
                    R.anim.push_left_in,
                    R.anim.push_left_out);
            mTextFragmentOne = new FindUserFragment();
            fragmentTransaction.add(R.id.fragment_FindUser,mTextFragmentOne);


        }


        mTextFragmentOne = new FindGroupFragment();
        fragmentTransaction.add(R.id.fragment_FindGroup,mTextFragmentOne);


        fragmentTransaction.addToBackStack(null);
        fragmentTransaction.commit();
    }
    //Fragment 消失动画
    private void removeFragment() {
        if (null == mFragmentManager) {
            mFragmentManager = getSupportFragmentManager();
        }
        mFragmentManager.popBackStack();
    }
    /*
       显示查找联盟页面
     */
    public void FindGroupClick(View view){
        removeFragment();
        addFragment();
        find_group_but.setEnabled(false);
        find_user_but.setEnabled(true);
        getSupportFragmentManager().beginTransaction().hide(fragments[1]).show(fragments[0]).commit();




    }
    /*
      显示查找用户页面
    */
    public void FindUserClick(View view){
        removeFragment();
        addFragment();
        find_group_but.setEnabled(true);
        find_user_but.setEnabled(false);
        getSupportFragmentManager().beginTransaction().hide(fragments[0]).show(fragments[1]).commit();


    }


}

源码免费下载地址

Fragment切换动画,布布扣,bubuko.com

Fragment切换动画

标签:fragment   animation   

原文地址:http://blog.csdn.net/u012286242/article/details/37884131

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!