本文整理汇总了Java中android.view.View.hasTransientState方法的典型用法代码示例。如果您正苦于以下问题:Java View.hasTransientState方法的具体用法?Java View.hasTransientState怎么用?Java View.hasTransientState使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类android.view.View
的用法示例。
在下文中一共展示了View.hasTransientState方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: pruneScrapViews
import android.view.View; //导入方法依赖的package包/类
/**
* Makes sure that the size of mScrapViews does not exceed the size of
* mActiveViews. (This can happen if an adapter does not recycle its
* views).
*/
@SuppressLint("NewApi")
private void pruneScrapViews() {
final int maxViews = mActiveViews.length;
final int viewTypeCount = mViewTypeCount;
final ArrayList<View>[] scrapViews = mScrapViews;
for (int i = 0; i < viewTypeCount; ++i) {
final ArrayList<View> scrapPile = scrapViews[i];
int size = scrapPile.size();
final int extras = size - maxViews;
size--;
for (int j = 0; j < extras; j++) {
removeDetachedView(scrapPile.remove(size--), false);
}
}
if (mTransientStateViews != null) {
for (int i = 0; i < mTransientStateViews.size(); i++) {
final View v = mTransientStateViews.valueAt(i);
// this code is never executed on android < 16
if (!v.hasTransientState()) {
mTransientStateViews.removeAt(i);
i--;
}
}
}
}
示例2: cancelAnimationsRecursive
import android.view.View; //导入方法依赖的package包/类
protected static void cancelAnimationsRecursive(View view) {
if (view != null && view.hasTransientState()) {
view.animate().cancel();
if (view instanceof ViewGroup) {
final int count = ((ViewGroup) view).getChildCount();
for (int i = 0; view.hasTransientState() && i < count; i++) {
cancelAnimationsRecursive(((ViewGroup) view).getChildAt(i));
}
}
}
}
示例3: hasTransientState
import android.view.View; //导入方法依赖的package包/类
public static boolean hasTransientState(View view) {
return view.hasTransientState();
}
示例4: addScrapView
import android.view.View; //导入方法依赖的package包/类
/**
* Put a view into the ScrapViews list. These views are unordered.
*
* @param scrap
* The view to add
*/
@SuppressLint("NewApi")
public void addScrapView(View scrap, int position) {
AbsHListView.LayoutParams lp = (AbsHListView.LayoutParams) scrap
.getLayoutParams();
if (lp == null) {
return;
}
lp.scrappedFromPosition = position;
// Don't put header or footer views or views that should be ignored
// into the scrap heap
int viewType = lp.viewType;
final boolean scrapHasTransientState = android.os.Build.VERSION.SDK_INT >= 16 ? scrap
.hasTransientState() : false;
if (!shouldRecycleViewType(viewType) || scrapHasTransientState) {
if (viewType != ITEM_VIEW_TYPE_HEADER_OR_FOOTER
|| scrapHasTransientState) {
if (mSkippedScrap == null) {
mSkippedScrap = new ArrayList<View>();
}
mSkippedScrap.add(scrap);
}
if (scrapHasTransientState) {
if (mTransientStateViews == null) {
mTransientStateViews = new SparseArrayCompat<View>();
}
scrap.onStartTemporaryDetach();
mTransientStateViews.put(position, scrap);
}
return;
}
scrap.onStartTemporaryDetach();
if (mViewTypeCount == 1) {
mCurrentScrap.add(scrap);
} else {
mScrapViews[viewType].add(scrap);
}
if (android.os.Build.VERSION.SDK_INT >= 14) {
scrap.setAccessibilityDelegate(null);
}
if (mRecyclerListener != null) {
mRecyclerListener.onMovedToScrapHeap(scrap);
}
}
示例5: scrapActiveViews
import android.view.View; //导入方法依赖的package包/类
/**
* Move all views remaining in mActiveViews to mScrapViews.
*/
@SuppressLint("NewApi")
public void scrapActiveViews() {
final View[] activeViews = mActiveViews;
final boolean hasListener = mRecyclerListener != null;
final boolean multipleScraps = mViewTypeCount > 1;
ArrayList<View> scrapViews = mCurrentScrap;
final int count = activeViews.length;
for (int i = count - 1; i >= 0; i--) {
final View victim = activeViews[i];
if (victim != null) {
final AbsHListView.LayoutParams lp = (AbsHListView.LayoutParams) victim
.getLayoutParams();
int whichScrap = lp.viewType;
activeViews[i] = null;
final boolean scrapHasTransientState = android.os.Build.VERSION.SDK_INT >= 16 ? victim
.hasTransientState() : false;
if (!shouldRecycleViewType(whichScrap)
|| scrapHasTransientState) {
// Do not move views that should be ignored
if (whichScrap != ITEM_VIEW_TYPE_HEADER_OR_FOOTER
|| scrapHasTransientState) {
removeDetachedView(victim, false);
}
if (scrapHasTransientState) {
if (mTransientStateViews == null) {
mTransientStateViews = new SparseArrayCompat<View>();
}
mTransientStateViews.put(mFirstActivePosition + i,
victim);
}
continue;
}
if (multipleScraps) {
scrapViews = mScrapViews[whichScrap];
}
victim.onStartTemporaryDetach();
lp.scrappedFromPosition = mFirstActivePosition + i;
scrapViews.add(victim);
if (android.os.Build.VERSION.SDK_INT >= 14) {
victim.setAccessibilityDelegate(null);
}
if (hasListener) {
mRecyclerListener.onMovedToScrapHeap(victim);
}
}
}
pruneScrapViews();
}