我使用https://github.com/commonsguy/cwac-pagerCWAC尋呼機使用像FragmentStatePagerAdapter
還有就是ArrayPagerAdapter構造,即需要一個RetentionStrategy作爲參數的另一種風味。這最終將允許ArrayPagerAdapter工作,或者像FragmentPagerAdapter(current)或FragmentStatePagerAdapter(將來)。
那麼我該如何實現RetentionStrategy?關於這方面的信息並不多。它有兩個方法:
public interface RetentionStrategy {
void attach(Fragment fragment, FragmentTransaction currTransaction);
void detach(Fragment fragment, FragmentTransaction currTransaction);
}
我在ArrayPagerAdapter多頁,所以當它像FragmentPagerAdapter這是不好的內存。