MCPcopy Create free account

hub / github.com/DrownCoder/RecyclerViewStudy / functions

Functions867 in github.com/DrownCoder/RecyclerViewStudy

MethodisLayoutFrozen
Returns true if layout and scroll are frozen. @return true if layout and scroll are frozen @see #setLayoutFrozen(boolean)
app/src/main/assets/RecyclerView.java:2245
MethodisMeasurementCacheEnabled
In addition to the View Framework's measurement cache, RecyclerView uses its own additional measurement cache for its children to avoid re-measuring t
app/src/main/assets/RecyclerView.java:9437
MethodisMeasuring
Returns true if the RecyclerView is currently measuring the layout. This value is {@code true} only if the LayoutManager opted into the auto measure A
app/src/main/assets/RecyclerView.java:12824
MethodisNestedScrollingEnabled
()
app/src/main/assets/RecyclerView.java:11842
MethodisSmoothScrollbarEnabled
Returns the current state of the smooth scrollbar feature. It is enabled by default. @return True if smooth scrollbar is enabled, false otherwise. @s
app/src/main/assets/LinearLayoutManager.java:1290
MethodisViewPartiallyVisible
Returns whether the given child view is partially or fully visible within the padded bounded area of RecyclerView, depending on the input parameters.
app/src/main/assets/RecyclerView.java:10109
MethodjumpTo
Instead of specifying pixels to scroll, use the target position to jump using {@link RecyclerView#scrollToPosition(int)}. <p> You may prefer using thi
app/src/main/assets/RecyclerView.java:12417
MethodlayoutDecorated
Lay out the given child view within the RecyclerView using coordinates that include any current {@link ItemDecoration ItemDecorations}. <p>LayoutMana
app/src/main/assets/RecyclerView.java:9676
Methodlog
()
app/src/main/assets/LinearLayoutManager.java:2512
MethodlogCache
(String key, RecyclerView rcy)
app/src/main/java/com/study/xuan/recyclerviewstudy/RcyLog.java:71
MethodlogPool
(RecyclerView rcy)
app/src/main/java/com/study/xuan/recyclerviewstudy/RcyLog.java:36
MethodlogProcess
(TextView tv, String log)
app/src/main/java/com/study/xuan/recyclerviewstudy/RcyLog.java:148
MethodlogScrapCache
(RecyclerView rcy)
app/src/main/java/com/study/xuan/recyclerviewstudy/RcyLog.java:52
MethodmarkItemDecorInsetsDirty
()
app/src/main/assets/RecyclerView.java:6810
MethodmarkKnownViewsInvalid
()
app/src/main/assets/RecyclerView.java:6776
MethodmarkViewHoldersUpdated
(int positionStart, int itemCount, Object payload)
app/src/main/assets/RecyclerView.java:978
MethodmeasureChild
Measure a child view using standard measurement policy, taking the padding of the parent RecyclerView and any added item decorations into account. <p
app/src/main/assets/RecyclerView.java:9377
MethodnewArray
(int size)
app/src/main/assets/RecyclerView.java:12667
MethodnewArray
(int size)
app/src/main/assets/LinearLayoutManager.java:2575
Methodnormalize
Normalizes the vector. @param scrollVector The vector that points to the target scroll position
app/src/main/assets/RecyclerView.java:12287
MethodnotifyItemInserted
Notify any registered observers that the item reflected at <code>position</code> has been newly inserted. The item previously at <code>position</code>
app/src/main/assets/RecyclerView.java:7387
MethodnotifyItemMoved
Notify any registered observers that the item reflected at <code>fromPosition</code> has been moved to <code>toPosition</code>. <p>This is a structur
app/src/main/assets/RecyclerView.java:7404
MethodnotifyItemMoved
(int fromPosition, int toPosition)
app/src/main/assets/RecyclerView.java:12608
MethodnotifyItemRangeChanged
(int positionStart, int itemCount)
app/src/main/assets/RecyclerView.java:12574
MethodnotifyItemRangeInserted
(int positionStart, int itemCount)
app/src/main/assets/RecyclerView.java:12588
MethodnotifyItemRangeRemoved
(int positionStart, int itemCount)
app/src/main/assets/RecyclerView.java:12598
MethodoffsetChild
Offsets the child in this orientation. @param view View to offset @param offset offset amount
app/src/main/assets/OrientationHelper.java:191
MethodoffsetChildrenHorizontal
Offset all child views attached to the parent RecyclerView by dx pixels along the horizontal axis. @param dx Pixels to offset by
app/src/main/assets/RecyclerView.java:9208
MethodoffsetChildrenVertical
Offset all child views attached to the parent RecyclerView by dy pixels along the vertical axis. @param dy Pixels to offset by
app/src/main/assets/RecyclerView.java:9222
MethodoffsetPositionRecordsForInsert
(int insertedAt, int count)
app/src/main/assets/RecyclerView.java:6692
MethodoffsetPositionRecordsForMove
(int from, int to)
app/src/main/assets/RecyclerView.java:6663
MethodoffsetPositionRecordsForRemove
@param removedFrom Remove start index @param count Remove count @param applyToPreLayout If true, changes will affect ViewHolder's pre-layout position,
app/src/main/assets/RecyclerView.java:6714
MethodoffsetPositionsForAdd
(int positionStart, int itemCount)
app/src/main/assets/RecyclerView.java:1012
MethodoffsetPositionsForMove
(int from, int to)
app/src/main/assets/RecyclerView.java:1018
MethodoffsetPositionsForRemovingInvisible
(int start, int count)
app/src/main/assets/RecyclerView.java:962
MethodoffsetPositionsForRemovingLaidOutOrNewView
( int positionStart, int itemCount)
app/src/main/assets/RecyclerView.java:970
MethodonAdapterChanged
Detaches the old adapter and attaches the new one. <p> RecycledViewPool will clear its cache if it has only one adapter attached and the new adapter u
app/src/main/assets/RecyclerView.java:5628
MethodonAdapterChanged
(Adapter oldAdapter, Adapter newAdapter, boolean compatibleWithPrevious)
app/src/main/assets/RecyclerView.java:6657
MethodonAnimationFinished
(ViewHolder item)
app/src/main/assets/RecyclerView.java:13061
MethodonAttachedToWindow
()
app/src/main/assets/RecyclerView.java:2799
MethodonBindViewHolder
(ImageChildViewHolder holder, int position)
app/src/main/java/com/study/xuan/recyclerviewstudy/RcyChildAdapter.java:36
MethodonBindViewHolder
(RecyclerView.ViewHolder holder, int position)
app/src/main/java/com/study/xuan/recyclerviewstudy/RcyAdapter.java:58
MethodonChanged
notifydatasetchange调用的方法
app/src/main/assets/RecyclerView.java:5423
MethodonChildAttachedToWindow
(View child)
app/src/main/assets/RecyclerView.java:12272
MethodonClick
(View v)
app/src/main/java/com/study/xuan/recyclerviewstudy/MainActivity.java:92
MethodonCreate
(Bundle savedInstanceState)
app/src/main/java/com/study/xuan/recyclerviewstudy/MainActivity.java:22
MethodonCreateViewHolder
(ViewGroup parent, int viewType)
app/src/main/java/com/study/xuan/recyclerviewstudy/RcyChildAdapter.java:30
MethodonCreateViewHolder
(ViewGroup parent, int viewType)
app/src/main/java/com/study/xuan/recyclerviewstudy/RcyAdapter.java:42
MethodonDetachedFromRecyclerView
(RecyclerView recyclerView)
app/src/main/java/com/study/xuan/recyclerviewstudy/RcyAdapter.java:84
MethodonDetachedFromWindow
()
app/src/main/assets/RecyclerView.java:2833
MethodonDetachedFromWindow
(RecyclerView view, RecyclerView.Recycler recycler)
app/src/main/assets/LinearLayoutManager.java:274
MethodonDispatchFirstPass
(AdapterHelper.UpdateOp op)
app/src/main/assets/RecyclerView.java:984
MethodonDispatchSecondPass
(AdapterHelper.UpdateOp op)
app/src/main/assets/RecyclerView.java:1007
MethodonDraw
(Canvas c)
app/src/main/assets/RecyclerView.java:4352
MethodonDraw
Draw any appropriate decorations into the Canvas supplied to the RecyclerView. Any content drawn by this method will be drawn before the item views ar
app/src/main/assets/RecyclerView.java:10941
MethodonEnteredHiddenState
(View child)
app/src/main/assets/RecyclerView.java:925
MethodonFocusSearchFailed
(View focused, int focusDirection, RecyclerView.Recycler recycler, Recycle
app/src/main/assets/LinearLayoutManager.java:2136
MethodonGenericMotionEvent
(MotionEvent event)
app/src/main/assets/RecyclerView.java:3285
MethodonInitializeAccessibilityEvent
(AccessibilityEvent event)
app/src/main/assets/RecyclerView.java:10591
MethodonInitializeAccessibilityEvent
(AccessibilityEvent event)
app/src/main/assets/LinearLayoutManager.java:283
MethodonInitializeAccessibilityNodeInfo
(AccessibilityNodeInfoCompat info)
app/src/main/assets/RecyclerView.java:10540
MethodonInitializeAccessibilityNodeInfoForItem
(View host, AccessibilityNodeInfoCompat info)
app/src/main/assets/RecyclerView.java:10624
MethodonInterceptTouchEvent
(MotionEvent e)
app/src/main/assets/RecyclerView.java:2993
MethodonInterceptTouchEvent
(RecyclerView rv, MotionEvent e)
app/src/main/assets/RecyclerView.java:11089
MethodonItemRangeChanged
@return True if updates should be processed.
app/src/main/assets/AdapterHelper.java:505
MethodonItemRangeChanged
(int positionStart, int itemCount, Object payload)
app/src/main/assets/RecyclerView.java:5434
MethodonItemRangeInserted
@return True if updates should be processed.
app/src/main/assets/AdapterHelper.java:517
MethodonItemRangeInserted
(int positionStart, int itemCount)
app/src/main/assets/RecyclerView.java:5442
MethodonItemRangeMoved
@return True if updates should be processed.
app/src/main/assets/AdapterHelper.java:542
MethodonItemRangeMoved
(int fromPosition, int toPosition, int itemCount)
app/src/main/assets/RecyclerView.java:5458
MethodonItemRangeRemoved
@return True if updates should be processed.
app/src/main/assets/AdapterHelper.java:529
MethodonItemRangeRemoved
(int positionStart, int itemCount)
app/src/main/assets/RecyclerView.java:5450
MethodonLayout
(boolean changed, int l, int t, int r, int b)
app/src/main/assets/RecyclerView.java:4265
MethodonLayout
(boolean changed, int l, int t, int r, int b)
app/src/main/java/com/study/xuan/recyclerviewstudy/SRecyclerView.java:47
MethodonLayoutChildren
{@inheritDoc}
app/src/main/assets/LinearLayoutManager.java:545
MethodonLayoutCompleted
(RecyclerView.State state)
app/src/main/assets/LinearLayoutManager.java:757
MethodonLeftHiddenState
(View child)
app/src/main/assets/RecyclerView.java:933
MethodonMeasure
(int widthSpec, int heightSpec)
app/src/main/assets/RecyclerView.java:3335
MethodonMeasure
Measure the attached RecyclerView. Implementations must call {@link #setMeasuredDimension(int, int)} before returning. <p>The default implementation
app/src/main/assets/RecyclerView.java:10439
MethodonMeasure
(int widthSpec, int heightSpec)
app/src/main/java/com/study/xuan/recyclerviewstudy/SRecyclerView.java:54
MethodonRequestDisallowInterceptTouchEvent
(boolean disallowIntercept)
app/src/main/assets/RecyclerView.java:11098
MethodonRequestFocusInDescendants
(int direction, Rect previouslyFocusedRect)
app/src/main/assets/RecyclerView.java:2789
MethodonRestoreInstanceState
(Parcelable state)
app/src/main/assets/RecyclerView.java:1400
MethodonRestoreInstanceState
(Parcelable state)
app/src/main/assets/RecyclerView.java:10490
MethodonRestoreInstanceState
(Parcelable state)
app/src/main/assets/LinearLayoutManager.java:319
MethodonSaveInstanceState
()
app/src/main/assets/RecyclerView.java:1386
MethodonSaveInstanceState
<p>Called when the LayoutManager should save its state. This is a good time to save your scroll position, configuration and anything else that may be
app/src/main/assets/RecyclerView.java:10485
MethodonSaveInstanceState
()
app/src/main/assets/LinearLayoutManager.java:292
MethodonScrollStateChanged
RecyclerView calls this method to notify LayoutManager that scroll state has changed. @param state The new scroll state for RecyclerView
app/src/main/assets/RecyclerView.java:10513
MethodonScrollStateChanged
Callback method to be invoked when RecyclerView's scroll state changes. @param recyclerView The RecyclerView whose scroll state has changed. @param n
app/src/main/assets/RecyclerView.java:11123
MethodonScrolled
Callback method to be invoked when the RecyclerView has been scrolled. This will be called after the scroll has completed. <p> This callback will also
app/src/main/assets/RecyclerView.java:11139
MethodonScrolled
(RecyclerView recyclerView, int dx, int dy)
app/src/main/java/com/study/xuan/recyclerviewstudy/MainActivity.java:46
MethodonSizeChanged
(int w, int h, int oldw, int oldh)
app/src/main/assets/RecyclerView.java:3443
MethodonTouchEvent
(RecyclerView rv, MotionEvent e)
app/src/main/assets/RecyclerView.java:11094
MethodonViewDetachedFromWindow
(RecyclerView.ViewHolder holder)
app/src/main/java/com/study/xuan/recyclerviewstudy/RcyAdapter.java:79
MethodonViewRecycled
Called when a view created by this adapter has been recycled. <p>A view is recycled when a {@link LayoutManager} decides that it no longer needs to b
app/src/main/assets/RecyclerView.java:7092
MethodperformAccessibilityAction
(int action, Bundle args)
app/src/main/assets/RecyclerView.java:10755
MethodperformAccessibilityActionForItem
(View view, int action, Bundle args)
app/src/main/assets/RecyclerView.java:10804
MethodprepareForDrop
@hide This method should be called by ItemTouchHelper only.
app/src/main/assets/LinearLayoutManager.java:2261
MethodprepareForNestedPrefetch
Prepare for a prefetch occurring on the RecyclerView in between traversals, potentially prior to any layout passes. <p>Don't touch any state stored b
app/src/main/assets/RecyclerView.java:12800
← previousnext →701–800 of 867, ranked by callers