2015-12-04 87 views
-4

我想從一個活動發送一個意圖到像這張圖片這樣的特定片段,並且片段在片段活動中(片段活動包括五個片段)。我沒有任何想法來實現它。 enter image description here如何從活動到特定片段?

+0

你真的想做些什麼?你的問題是不可理解的。 – Shane

+1

你的意思是「意向」 – droidev

+0

請指定更清楚,不能理解。 –

回答

0

我不完全知道你的意思是「意圖從活動到特定片段」。所以我只是假設你想在你的活動中顯示/導航到你的片段。下面是簡單的代碼:

//show your fragment inside your activity 
YourFragment fragment = new YourFragment(); 
getIntent().putExtra("KEY", "Value"); //pass data to your fragment 
transaction = this.getSupportFragmentManager().beginTransaction(); 
transaction.replace(R.id.IDofYourLayoutToBeReplaced, fragment); 
transaction.commit(); 

//in your fragment, retrieve the data 
String yourVariable = getActivity().getIntent().getExtras().getString("KEY"); 

或更好地瞭解,你可以檢查this link