你可以在你startactivity的地方,对intent加入一个参数,例贺祥如,intert.putExtra("fragid",1);
然后再你的fragment的主activity中的oncreate或者Onresume函数中获得这个id,例如
int id = intert.getIntegerExtra("禅戚搏fragid",-1);
然后根据这个id跳转即可
if(id > 0) {
if(id == 目标仔禅id) myfragment.setvisible(true);
}
用类似方法即可。
如下例:演示了如何用一个fragment代替另一个fragment,同时在后退栈中保存被代替的fragment的状态。氏者
//Create new fragment and transaction
FragmentnewFragment=newExampleFragment();
FragmentTransactiontransaction=getFragmentManager().beginTransaction();
//Replace whatever is in the fragment_container view with thisfragment,
//and add the transaction to the backstack
transaction.replace(R.id.fragment_container,newFragment);
transaction.addToBackStack(null);
/歼简薯/Commit the transaction
transaction.commit();
在onCreate()方法中直接咐枯把【优质作文】的fragment添加到transaction里面就可以,其实就是默认显示一个fragment,你怎么显示其他的fragment,这里代码一样,弄成方法copy一份放到onCreate()里ok
Intent intent = new Intent(Aactivity.this,Bactivity.class);
startActivity(intent);
某个点击的时候调用上面的语句,就中纳兆能实现activity之间的跳转,以Intent的方式卖租就可茄唯以了。