Android-片段事務的add與hide

來源:互聯網
上載者:User

標籤:

package com.example.thirdweek;

import android.os.Bundle;
import android.support.v4.app.Fragment;
import android.support.v4.app.FragmentActivity;
import android.support.v4.app.FragmentManager;
import android.support.v4.app.FragmentTransaction;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;

public class MainActivity extends FragmentActivity {

private Fragment myMusic;
private Fragment downLoad;
private Fragment mine;

private Fragment currentFragment;

@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);

// 擷取控制項
Button btnMyMusic = (Button) findViewById(R.id.btn_my_music);
Button btnDownLoad = (Button) findViewById(R.id.btn_download);
Button btnMine = (Button) findViewById(R.id.btn_mine);

btnMyMusic.setOnClickListener(new OnClickListener() {

@Override
public void onClick(View v) {
if(myMusic == null){
myMusic = new MyMusic();
}
JumpFragment(myMusic,"music");
}
});

btnDownLoad.setOnClickListener(new OnClickListener() {

@Override
public void onClick(View v) {
if(downLoad == null){
downLoad = new DwonLoad();
}
JumpFragment(downLoad,"downLoad");
}
});

btnMine.setOnClickListener(new OnClickListener() {

@Override
public void onClick(View v) {
if(mine == null){
mine = new Mine();
}
JumpFragment(mine,"mine");
}
});

}

private void JumpFragment(Fragment fragment, String tab) {
FragmentManager manager = getSupportFragmentManager();
FragmentTransaction action = manager.beginTransaction();
if (!fragment.isAdded()) {
action.add(R.id.fm, fragment);
}
if (currentFragment != null) {
action.hide(currentFragment);
}
action.show(fragment);
// 添加到回收棧
action.addToBackStack(tab);
action.commit();
currentFragment = fragment;
}

}

//建造多個資料庫需要

db.execSQL("drop if table exists t_user");

Android-片段事務的add與hide

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.