2013-09-01 72 views
1

好的,所以我想創建一個鏈接到我的瀏覽器支持的應用程序的隨機片段的按鈕。我搜索了很多關於這個問題,但我找不到有用的東西。我知道這可能是一個簡單而容易做到的事情,但對於我的弱知識來說,事實並非如此。我很感激任何我可能得到的幫助,並且我提前感謝你們所有的時間。如何顯示隨機片段?

回答

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; 
}