AbstractListView源码分析9
? ? ?* Acts upon click
? ? ?*/
? ? private AbsListView.PerformClick mPerformClick; 表示upon click
? ? /**
? ? ?* Delayed action for touch mode. :延遲的動(dòng)作用于touch mode
? ? ?*/
? ? private Runnable mTouchModeReset;
? ?/**
? ? ?* This view is in transcript mode -- it shows the bottom of the list when the data
? ? ?* changes ?transriptmode的當(dāng)前的值
? ? ?*/
? ? private int mTranscriptMode;
/**
? ? ?* Indicates that this list is always drawn on top of a solid, single-color, opaque
? ? ?* background
? ? ?*/
? ? private int mCacheColorHint; 表明列表總是繪制在一個(gè)solid,單獨(dú)顏色,模糊的背景上面
?/**
? ? ?* 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; 上一次的滑動(dòng)狀態(tài)
/**
? ? ?* Helper object that renders and controls the fast scroll thumb.
? ? ?*/
? ? private FastScroller mFastScroll; 輔助類渲染和控制快速滑動(dòng)thumb
/**
? ? ?* Temporary holder for fast scroller style until a FastScroller object
? ? ?* is created.
? ? ?*/
? ? private int mFastScrollStyle;臨時(shí)的快速滑動(dòng)樣式的holder直到一個(gè)FastScrollerobject被創(chuàng)建
? ? 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;
總結(jié)
以上是生活随笔為你收集整理的AbstractListView源码分析9的全部?jī)?nèi)容,希望文章能夠幫你解決所遇到的問(wèn)題。
- 上一篇: AbstractListView源码分析
- 下一篇: X265源码解析1-Encode方法