我有一个包含多个片段的活动。在那个活动中,我希望能够访问片段中创建的函数。
片段:
public class RandomFragment extends Fragment {
public void randomfuntion (){
}
}
的活动:
public class Main extends FragmentActivity{
Fragment randomname;
public void anotherrandomfuntion (){
randomname. // I want to have access to randomfuntion
}
}
帮助?
答案 0 :(得分:1)
(RandomFragment)randomname.randomfuntion()
应该有效