AbstractListView源码分析9
? ? ?* Acts upon click
? ? ?*/
? ? private AbsListView.PerformClick mPerformClick; 表示upon click
? ? /**
? ? ?* Delayed action for touch mode. :延遲的動作用于touch mode
? ? ?*/
? ? private Runnable mTouchModeReset;
? ?/**
? ? ?* This view is in transcript mode -- it shows the bottom of the list when the data
? ? ?* changes ?transriptmode的當前的值
? ? ?*/
? ? private int mTranscriptMode;
/**
? ? ?* Indicates that this list is always drawn on top of a solid, single-color, opaque
? ? ?* background
? ? ?*/
? ? private int mCacheColorHint; 表明列表總是繪制在一個solid,單獨顏色,模糊的背景上面
?/**
? ? ?* The select child's view (from the adapter's getView) is enabled.
? ? ?*/
? ? private boolean mIsChildViewEnabled;選擇孩子的視圖是enabled
/**
? ? ?* The last scroll state reported to clients through {@link OnScrollListener}.
? ? ?*/
? ? private int mLastScrollState = OnScrollListener.SCROLL_STATE_IDLE; 上一次的滑動狀態
/**
? ? ?* Helper object that renders and controls the fast scroll thumb.
? ? ?*/
? ? private FastScroller mFastScroll; 輔助類渲染和控制快速滑動thumb
/**
? ? ?* Temporary holder for fast scroller style until a FastScroller object
? ? ?* is created.
? ? ?*/
? ? private int mFastScrollStyle;臨時的快速滑動樣式的holder直到一個FastScrollerobject被創建
? ? private boolean mGlobalLayoutListenerAddedFilter; ? 全局的globalLayoutlistener
? ? private int mTouchSlop;?
? ? private float mDensityScale;
? ? private InputConnection mDefInputConnection;
? ? private InputConnectionWrapper mPublicInputConnection;
? ? private Runnable mClearScrollingCache;
? ? Runnable mPositionScrollAfterLayout;
? ? private int mMinimumVelocity;
? ? private int mMaximumVelocity;
? ? private float mVelocityScale = 1.0f;
總結
以上是生活随笔為你收集整理的AbstractListView源码分析9的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: AbstractListView源码分析
- 下一篇: X265源码解析1-Encode方法