如何显示随机片段?

时间:2013-09-01 18:29:29

标签: android button android-fragments

好的,所以我想创建一个链接到我的网页浏览器支持的应用程序的随机片段的按钮。我搜索了很多关于这件事但我找不到有用的东西。我知道这可能是一个简单易行的事情,但对于我的弱知识却不是。我很感激我能得到的任何帮助,并且我提前感谢你们所有的时间。

1 个答案:

答案 0 :(得分:0)

试试这个:

@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
    Random rand = new Random();
    //number_of_fragments must be replaced with number from your example.
    int randomNum = rand.nextInt(number_of_fragments);
    mViewPager.setCurrentItem(randomNum);
    return rootView;
}