日韩av黄I国产麻豆传媒I国产91av视频在线观看I日韩一区二区三区在线看I美女国产在线I麻豆视频国产在线观看I成人黄色短片

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 运维知识 > Android >内容正文

Android

【Android应用开发】RecycleView API 翻译 (文档翻译)

發布時間:2025/6/17 Android 46 豆豆
生活随笔 收集整理的這篇文章主要介紹了 【Android应用开发】RecycleView API 翻译 (文档翻译) 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.


.

RecyclerView

extends?ViewGroup
implements?ScrollingView?NestedScrollingChild
java.lang.Object
????android.view.View
?????android.view.ViewGroup
??????android.support.v7.widget.RecyclerView
Known Direct SubclassesHorizontalGridView,?VerticalGridView

類概述

這個靈活可變的View組件提供了一個在有限的窗口界面顯示一個大數據集.

術語表:

  • Adapter(適配器):?RecyclerView.Adapter?的子類,負責提供用于展示數據集中某條目數據的View組件.
  • Position(位置):?適配器(Adapter)中的數據項目位置.
  • Index(索引):?一個已經附加的子組件的索引在getChildAt(int)方法中使用. 與Position形成對比.
  • Binding(綁定進程):?適配器中需要一個顯示Position對應的數據的子組件,Binding就是準備該子組件的進程.
  • Recycle (view):?該View之前曾用于顯示指定適配器位置的數據,那么這個View可能會被放置在一個緩存中,以便可以在之后被復用去顯示同樣類型的數據.上述操作可以跳過布局文件的初始化加載或創建, 這樣就可以很大程度上提高應用的性能.
  • Scrap (view):?在布局過程中,一個已經進入暫時分離狀態子組件.在不用完全從父類RecycleView中分離的情況下,該Scrap View可以被復用.如果組件被認為是作廢的,那么重新綁定數據與組件和改變適配器不是必須的,不用作出改變.
  • Dirty (view):?一個子組件在顯示之前,必須被適配器(Adapter)重新綁定.

RecyclerView中的位置(Position):

RecyclerView 引入了一個附加的抽象層次在RecyclerView.Adapter?和RecyclerView.LayoutManager?之間,用于在布局計算時成批量地觀察數據集的變化. 這樣從追蹤Adapter(適配器)數據變化到計算動畫效果, 產生一個布局管理器(LayoutManager).它同樣對提升性能很有幫助,因為所有的組件綁定發生的同事時,避免沒有數據改變的組件重新綁定數據.

鑒于上述原因, 在 RecycleView 中有兩種類型的與Position相關的方法:

  • 布局位置 (layout position): 最近的一次布局計算的項目位置. 這個位置(Position)是以布局管理器 (LayoutManager) 的角度來說的.
  • 適配器位置 (adapter position): 適配器(Adapter)項目(Item)的位置. 這個位置(Position)是以適配器(Adapter)的角度來說的.

這兩個位置 (Position) 基本上是一樣的, 除了在分發?adapter.notify*??事件 和 計算更新的布局的時候不一樣.?

返回或者接收 布局位置(*LayoutPosition*) 的方法, 使用的位置是截止到最近的布局計算的位置 (例如?getLayoutPosition(),findViewHolderForLayoutPosition(int)). 這些位置會一直變化, 直到最近的布局計算完成. 你可以依賴這些位置, 這些位置與用戶當前在屏幕上看到的位置是一致的.例如, 如果你在屏幕上有一個項目列表, 用戶要求使用第五個項目元素, 你可以使用這些方法, 因為這些方法對應的位置就是用戶看到的位置.

另外一些關于 適配器位置(*AdapterPosition*)的方法 (例如: ?getAdapterPosition(),?findViewHolderForAdapterPosition(int)),?當你需要去使用最新的適配器位置時, 你應在使用這些方法, 即使這些位置還沒有針對對布局進行更新. 例如, 如果你觸發了 ViewHolder 點擊事件, 想要去獲取適配器中的項目元素, 你應該使用 getAdapterPosition()?方法. 注意這些方法可能不能去計算適配器的位置, 如果在?notifyDataSetChanged()?方法被調用, 同時新的布局在沒有被計算時. 鑒于以上原因, 你應該小心的去處理 方法返回?NO_POSITION?或者?null?結果的情況.

當你在重寫布局管理器?RecyclerView.LayoutManager?時, 你總是想要去獲取布局位置(Layout Position), 當你在重寫 適配器 RecyclerView.Adapter,?時, 你總是要獲取適配器位置 (adapter positions).

Summary

classRecyclerView.Adapter<VH?extends?RecyclerView.ViewHolder>適配器基類
適配器提供了一個功能, 可以綁定應用相關的數據集 與展示在 RecycleView 中的項目元素的?View 組件.
classRecyclerView.AdapterDataObserver觀察 適配器 (RecycleView.Adapter) 變化的 觀察者基類.
interfaceRecyclerView.ChildDrawingOrderCallback改變 RecycleView 子組件的 繪制順序的回調接口.
classRecyclerView.ItemAnimator該類定義了條目發生改變時 適配器 的動畫效果.
classRecyclerView.ItemDecoration項目裝飾, 在適配器數據集中指定的項目顯示組件上, 添加一個特別的圖畫 和 布局.
classRecyclerView.LayoutManager布局管理器 (LayoutManager) 主要負責在 RecycleView 中測量和放置項目 View 組件, 同時決定當項目 View 組件對用戶不可見時回收 項目 View 組件的方案策略;
classRecyclerView.LayoutParamsLayoutParams?的子類, 用于設置?RecycleView 子組件.
interfaceRecyclerView.OnChildAttachStateChangeListener如果將該監聽器接口對象設置給 RecycleView 后, 當 ViewHolder 從 RecycleView 中被附加或者移除的時候該監聽器就會被通知.
interfaceRecyclerView.OnItemTouchListener項目觸摸監聽器的作用 : RecycleView 的層級中觸摸事件被當做 RecycleView 自己的滾動操作, 設置了該監聽器, 就可以在 RecycleView 將觸摸事件當做滾動事件之前攔截這些觸摸操作.?
classRecyclerView.OnScrollListener滾動監聽器 (OnScrollListener) 被設置給 RecycleView 后, ?當滾動事件被觸發時,?可以接收滾動相關的信息.
classRecyclerView.RecycledViewPoolRecycleView 池 可以讓你在不同的 RecycleView 之間?分享 View 組件.
classRecyclerView.RecyclerRecycler (復用器) 作用是管理 已銷毀 或者 被分離的 項目組件 以用于復用.
interfaceRecyclerView.RecyclerListener循環復用監聽器 : 設置給 RecycleView 后, 當 View 組件被復用時, 會接收于此相關的信息.
classRecyclerView.SimpleOnItemTouchListenerRecycleView.OnItemTouchListener 接口的實現類, 有一個空的方法體 和 默認返回值.
classRecyclerView.SmoothScroller平滑滾動類的基類
classRecyclerView.State包含了一些 關于當前的 RecycleView 的狀態 的有用的信息, 如 目標滾動位置 和 View 組件 的焦點.
classRecyclerView.ViewCacheExtensionViewCacheExtension 是一個幫助類, 用于提供一個 可以被開發者 操縱的 View 緩存附加層.
classRecyclerView.ViewHolder一個 ViewHolder 描述了一個條目組件 (View) 和要在 RecycleView 中的該位置顯示的元數據(metadata).




[Expand]Inherited XML Attributes
From class?android.view.ViewGroup
From class?android.view.View

XML Attributes
Attribute NameRelated MethodDescription
android.support.v7.recyclerview:layoutManager?RecycleView 的布局管理器

[Expand]Inherited Fields
From class?android.view.View
[Expand]Inherited Constants
From class?android.view.ViewGroup
From class?android.view.View
Public Constructors
RecyclerView(Context?context)
RecyclerView(Context?context,?AttributeSet?attrs)
RecyclerView(Context?context,?AttributeSet?attrs, int defStyle)
Public Methods
voidaddFocusables(ArrayList<View> views, int direction, int focusableMode)添加任意可獲取焦點的組件, 這些被添加的組件是該 View (調用本方法的 View 組件, 可能包括這個 View 本身也可以獲取焦點) 的子節點.
voidaddItemDecoration(RecyclerView.ItemDecoration?decor)為這個 RecycleView 添加一個項目裝飾 (RecycleView.ItemDecoration).
voidaddItemDecoration(RecyclerView.ItemDecoration?decor, int index)為這個 RecycleView 添加一個項目裝飾 (RecycleView.ItemDecoration).
voidaddOnChildAttachStateChangeListener(RecyclerView.OnChildAttachStateChangeListener?listener)注冊一個監聽器, 當子組件被附加或者從 RecycleView 中移除時, 會得到一個相關的通知.
voidaddOnItemTouchListener(RecyclerView.OnItemTouchListener?listener)添加一個項目觸摸監聽器用于監聽觸摸事件, 在這些事件被傳給子組件 或者 在 RecycleView 級別上被 當做滾動事件 前, 攔截這些事件.
voidaddOnScrollListener(RecyclerView.OnScrollListener?listener)添加一個監聽器, 作用是當滾動狀態 或者 位置發生變化時得到相應的通知.
voidclearOnChildAttachStateChangeListeners()移除 通過 addOnChildAttachStateChangeListener 方法添加的監聽器.
voidclearOnScrollListeners()之前 設置的 關于通知任意滾動狀態 或 位置 變化的?監聽器, 該方法用于移除這些次要的監聽器.
intcomputeHorizontalScrollExtent()

在水平范圍中, 計算水平滾動條的水平范圍.

intcomputeHorizontalScrollOffset()

在水平范圍中, 計算水平滾動條的水平偏移量.

intcomputeHorizontalScrollRange()

計算 橫向滾動條 在水平方向上的滾動范圍.

intcomputeVerticalScrollExtent()

在垂直范圍內, 計算垂直滾動條翻越的范圍.

intcomputeVerticalScrollOffset()

在垂直方向范圍中, 計算垂直方向上的 垂直滾動條 的翻越的偏移量.

intcomputeVerticalScrollRange()

計算垂直滾動條的滾動范圍.

booleandispatchNestedFling(float velocityX, float velocityY, boolean consumed)分發拋出動作到嵌套的滑動中.
booleandispatchNestedPreFling(float velocityX, float velocityY)在動作被 View 組件處理前, 分發一個拋出動作到嵌套滑動中.
booleandispatchNestedPreScroll(int dx, int dy, int[] consumed, int[] offsetInWindow)在 View 執行 滾動動作前, 分發一個嵌套滾動的步驟;
booleandispatchNestedScroll(int dxConsumed, int dyConsumed, int dxUnconsumed, int dyUnconsumed, int[] offsetInWindow)分發一個嵌套滾動中的一個步驟;
voiddraw(Canvas?c)主要用于在給定的畫布中 渲染 View 組件 (及 View 組件的子組件) ;
booleandrawChild(Canvas?canvas,?View?child, long drawingTime)繪制 View 組中的一個子組件;
ViewfindChildViewUnder(float x, float y)在給定的一點找出最頂端的 View 組件;
RecyclerView.ViewHolderfindViewHolderForAdapterPosition(int position)在數據集中, 通過給定的 位置, 找出 item 條目的 ViewHolder;
RecyclerView.ViewHolderfindViewHolderForItemId(long id)根據一個給定 item 的 id 編號找出其 ViewHolder;
RecyclerView.ViewHolderfindViewHolderForLayoutPosition(int position)根據給定的 最新 使用的布局 的位置 (也是數據集的位置) 返回對應的 item 條目的?ViewHolder;
RecyclerView.ViewHolderfindViewHolderForPosition(int position)該方法棄用, 使用 ?findViewHolderForLayoutPosition(int)?orfindViewHolderForAdapterPosition(int)
booleanfling(int velocityX, int velocityY)給定一個初始的速度 (像素/秒) 沿著 對應的坐標軸 開始一個標準的拋出動作;
ViewfocusSearch(View?focused, int direction)在給定的方向上, 找出最近的 View 組件, 獲取焦點;
ViewGroup.LayoutParamsgenerateLayoutParams(AttributeSet?attrs)Returns a new set of layout parameters based on the supplied attributes set.基于給定的屬性集合, 返回一個新的布局參數;
AdaptergetAdapter()Retrieves the previously set adapter or null if no adapter is set.
intgetBaseline()

Return the offset of the RecyclerView's text baseline from the its top boundary.

intgetChildAdapterPosition(View?child)Return the adapter position that the given child view corresponds to.
longgetChildItemId(View?child)Return the stable item id that the given child view corresponds to.
intgetChildLayoutPosition(View?child)Return the adapter position of the given child view as of the latest completed layout pass.
intgetChildPosition(View?child)This method is deprecated. use?getChildAdapterPosition(View)?or?getChildLayoutPosition(View).
RecyclerView.ViewHoldergetChildViewHolder(View?child)Retrieve the?RecyclerView.ViewHolder?for the given child view.
RecyclerViewAccessibilityDelegategetCompatAccessibilityDelegate()Returns the accessibility delegate compatibility implementation used by the RecyclerView.
RecyclerView.ItemAnimatorgetItemAnimator()Gets the current ItemAnimator for this RecyclerView.
RecyclerView.LayoutManagergetLayoutManager()Return the?RecyclerView.LayoutManager?currently responsible for layout policy for this RecyclerView.
intgetMaxFlingVelocity()Returns the maximum fling velocity used by this RecyclerView.
intgetMinFlingVelocity()Returns the minimum velocity to start a fling.
RecyclerView.RecycledViewPoolgetRecycledViewPool()Retrieve this RecyclerView's?RecyclerView.RecycledViewPool.
intgetScrollState()Return the current scrolling state of the RecyclerView.
booleanhasFixedSize()
booleanhasNestedScrollingParent()Returns true if this view has a nested scrolling parent.
booleanhasPendingAdapterUpdates()Returns whether there are pending adapter updates which are not yet applied to the layout.
voidinvalidateItemDecorations()Invalidates all ItemDecorations.
booleanisAnimating()Returns true if RecyclerView is currently running some animations.
booleanisAttachedToWindow()Returns true if RecyclerView is attached to window.
booleanisComputingLayout()Returns whether RecyclerView is currently computing a layout.
booleanisLayoutFrozen()Returns true if layout and scroll are frozen.
booleanisNestedScrollingEnabled()Returns true if nested scrolling is enabled for this view.
voidoffsetChildrenHorizontal(int dx)Offset the bounds of all child views by?dx?pixels.
voidoffsetChildrenVertical(int dy)Offset the bounds of all child views by?dy?pixels.
voidonChildAttachedToWindow(View?child)Called when an item view is attached to this RecyclerView.
voidonChildDetachedFromWindow(View?child)Called when an item view is detached from this RecyclerView.
voidonDraw(Canvas?c)Implement this to do your drawing.
booleanonGenericMotionEvent(MotionEvent?event)Implement this method to handle generic motion events.
booleanonInterceptTouchEvent(MotionEvent?e)Implement this method to intercept all touch screen motion events.
voidonScrollStateChanged(int state)Called when the scroll state of this RecyclerView changes.
voidonScrolled(int dx, int dy)Called when the scroll position of this RecyclerView changes.
booleanonTouchEvent(MotionEvent?e)Implement this method to handle touch screen motion events.
voidremoveItemDecoration(RecyclerView.ItemDecoration?decor)Remove an?RecyclerView.ItemDecoration?from this RecyclerView.
voidremoveOnChildAttachStateChangeListener(RecyclerView.OnChildAttachStateChangeListener?listener)Removes the provided listener from child attached state listeners list.
voidremoveOnItemTouchListener(RecyclerView.OnItemTouchListener?listener)Remove an?RecyclerView.OnItemTouchListener.
voidremoveOnScrollListener(RecyclerView.OnScrollListener?listener)Remove a listener that was notified of any changes in scroll state or position.
voidrequestChildFocus(View?child,?View?focused)Called when a child of this parent wants focus
booleanrequestChildRectangleOnScreen(View?child,?Rect?rect, boolean immediate)Called when a child of this group wants a particular rectangle to be positioned onto the screen.
voidrequestDisallowInterceptTouchEvent(boolean disallowIntercept)Called when a child does not want this parent and its ancestors to intercept touch events withonInterceptTouchEvent(MotionEvent).
voidrequestLayout()Call this when something has changed which has invalidated the layout of this view.
voidscrollBy(int x, int y)Move the scrolled position of your view.
voidscrollTo(int x, int y)Set the scrolled position of your view.
voidscrollToPosition(int position)Convenience method to scroll to a certain position.
voidsendAccessibilityEventUnchecked(AccessibilityEvent?event)This method behaves exactly as?sendAccessibilityEvent(int)?but takes as an argument an emptyAccessibilityEvent?and does not perform a check whether accessibility is enabled.
voidsetAccessibilityDelegateCompat(RecyclerViewAccessibilityDelegate?accessibilityDelegate)Sets the accessibility delegate compatibility implementation used by RecyclerView.
voidsetAdapter(Adapter?adapter)Set a new adapter to provide child views on demand.
voidsetChildDrawingOrderCallback(RecyclerView.ChildDrawingOrderCallback?childDrawingOrderCallback)Sets the?RecyclerView.ChildDrawingOrderCallback?to be used for drawing children.
voidsetClipToPadding(boolean clipToPadding)Sets whether this ViewGroup will clip its children to its padding and resize (but not clip) any EdgeEffect to the padded region, if padding is present.
voidsetHasFixedSize(boolean hasFixedSize)RecyclerView can perform several optimizations if it can know in advance that changes in adapter content cannot change the size of the RecyclerView itself.
voidsetItemAnimator(RecyclerView.ItemAnimator?animator)Sets the?RecyclerView.ItemAnimator?that will handle animations involving changes to the items in this RecyclerView.
voidsetItemViewCacheSize(int size)Set the number of offscreen views to retain before adding them to the potentially shared?recycled view pool.
voidsetLayoutFrozen(boolean frozen)Enable or disable layout and scroll.
voidsetLayoutManager(RecyclerView.LayoutManager?layout)Set the?RecyclerView.LayoutManager?that this RecyclerView will use.
voidsetNestedScrollingEnabled(boolean enabled)Enable or disable nested scrolling for this view.
voidsetOnScrollListener(RecyclerView.OnScrollListener?listener)This method is deprecated. Use?addOnScrollListener(OnScrollListener)?andremoveOnScrollListener(OnScrollListener)
voidsetRecycledViewPool(RecyclerView.RecycledViewPool?pool)Recycled view pools allow multiple RecyclerViews to share a common pool of scrap views.
voidsetRecyclerListener(RecyclerView.RecyclerListener?listener)Register a listener that will be notified whenever a child view is recycled.
voidsetScrollingTouchSlop(int slopConstant)Configure the scrolling touch slop for a specific use case.
voidsetViewCacheExtension(RecyclerView.ViewCacheExtension?extension)Sets a new?RecyclerView.ViewCacheExtension?to be used by the Recycler.
voidsmoothScrollBy(int dx, int dy)Animate a scroll by the given amount of pixels along either axis.
voidsmoothScrollToPosition(int position)Starts a smooth scroll to an adapter position.
booleanstartNestedScroll(int axes)Begin a nestable scroll operation along the given axes.
voidstopNestedScroll()Stop a nested scroll in progress.
voidstopScroll()Stop any current scroll in progress, such as one started by?smoothScrollBy(int, int),?fling(int, int)?or a touch-initiated fling.
voidswapAdapter(Adapter?adapter, boolean removeAndRecycleExistingViews)Swaps the current adapter with the provided one.
Protected Methods
booleancheckLayoutParams(ViewGroup.LayoutParams?p)
voiddispatchRestoreInstanceState(SparseArray<Parcelable> container)Override to prevent thawing of any views created by the adapter.
voiddispatchSaveInstanceState(SparseArray<Parcelable> container)Override to prevent freezing of any views created by the adapter.
ViewGroup.LayoutParamsgenerateDefaultLayoutParams()Returns a set of default layout parameters.
ViewGroup.LayoutParamsgenerateLayoutParams(ViewGroup.LayoutParams?p)Returns a safe set of layout parameters based on the supplied layout params.
intgetChildDrawingOrder(int childCount, int i)Returns the index of the child to draw for this iteration.
voidonAttachedToWindow()This is called when the view is attached to a window.
voidonDetachedFromWindow()This is called when the view is detached from a window.
voidonLayout(boolean changed, int l, int t, int r, int b)Called from layout when this view should assign a size and position to each of its children.
voidonMeasure(int widthSpec, int heightSpec)

Measure the view and its content to determine the measured width and the measured height.

voidonRestoreInstanceState(Parcelable?state)Hook allowing a view to re-apply a representation of its internal state that had previously been generated byonSaveInstanceState().
ParcelableonSaveInstanceState()Hook allowing a view to generate a representation of its internal state that can later be used to create a new instance with that same state.
voidonSizeChanged(int w, int h, int oldw, int oldh)This is called during layout when the size of this view has changed.
voidremoveDetachedView(View?child, boolean animate)Finishes the removal of a detached view.
[Expand]Inherited Methods
?From class?android.view.ViewGroup
?From class?android.view.View
?From class?java.lang.Object
?From interface?android.view.ViewParent
?From interface?android.view.ViewManager
?From interface?android.graphics.drawable.Drawable.Callback
?From interface?android.view.KeyEvent.Callback
?From interface?android.view.accessibility.AccessibilityEventSource
?From interface?android.support.v4.view.ScrollingView
?From interface?android.support.v4.view.NestedScrollingChild

XML Attributes

android.support.v7.recyclerview:layoutManager

Class name of the Layout Manager to be used.

The class must extend android.support.v7.widget.RecyclerView$LayoutManager and have either a default constructor or constructor with the signature (android.content.Context, android.util.AttributeSet, int, int).

If the name starts with a '.', application package is prefixed. Else, if the name contains a '.', the classname is assumed to be a full class name. Else, the recycler view package name (android.support.v7.widget) is prefixed.

Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.

This may also be a reference to a resource (in the form "@[package:]type:name") or theme attribute (in the form "?[package:][type:]name") containing a value of this type.

This is a private symbol.

Related Methods

    Constants

    public static final int?HORIZONTAL

    Constant Value:?0 (0x00000000)

    public static final int?INVALID_TYPE

    Constant Value:?-1 (0xffffffff)

    public static final long?NO_ID

    Constant Value:?-1 (0xffffffffffffffff)

    public static final int?NO_POSITION

    Constant Value:?-1 (0xffffffff)

    public static final int?SCROLL_STATE_DRAGGING

    The RecyclerView is currently being dragged by outside input such as user touch input.

    See Also
    • getScrollState()
    Constant Value:?1 (0x00000001)

    public static final int?SCROLL_STATE_IDLE

    The RecyclerView is not currently scrolling.

    See Also
    • getScrollState()
    Constant Value:?0 (0x00000000)

    public static final int?SCROLL_STATE_SETTLING

    The RecyclerView is currently animating to a final position while not under outside control.

    See Also
    • getScrollState()
    Constant Value:?2 (0x00000002)

    public static final int?TOUCH_SLOP_DEFAULT

    Constant for use with?setScrollingTouchSlop(int). Indicates that the RecyclerView should use the standard touch slop for smooth, continuous scrolling.

    Constant Value:?0 (0x00000000)

    public static final int?TOUCH_SLOP_PAGING

    Constant for use with?setScrollingTouchSlop(int). Indicates that the RecyclerView should use the standard touch slop for scrolling widgets that snap to a page or other coarse-grained barrier.

    Constant Value:?1 (0x00000001)

    public static final int?VERTICAL

    Constant Value:?1 (0x00000001)

    Public Constructors

    public?RecyclerView?(Context?context)

    public?RecyclerView?(Context?context,?AttributeSet?attrs)

    public?RecyclerView?(Context?context,?AttributeSet?attrs, int defStyle)

    Public Methods

    public void?addFocusables?(ArrayList<View> views, int direction, int focusableMode)

    Adds any focusable views that are descendants of this view (possibly including this view if it is focusable itself) to views. This method adds all focusable views regardless if we are in touch mode or only views focusable in touch mode if we are in touch mode or only views that can take accessibility focus if accessibility is enabled depending on the focusable mode parameter.

    Parameters
    viewsdirectionfocusableMode
    Focusable views found so far or null if all we are interested is the number of focusables.
    The direction of the focus.
    The type of focusables to be added.

    public void?addItemDecoration?(RecyclerView.ItemDecoration?decor)

    Add an?RecyclerView.ItemDecoration?to this RecyclerView. Item decorations can affect both measurement and drawing of individual item views.

    Item decorations are ordered. Decorations placed earlier in the list will be run/queried/drawn first for their effects on item views. Padding added to views will be nested; a padding added by an earlier decoration will mean further item decorations in the list will be asked to draw/pad within the previous decoration's given area.

    Parameters
    decor
    Decoration to add

    public void?addItemDecoration?(RecyclerView.ItemDecoration?decor, int index)

    Add an?RecyclerView.ItemDecoration?to this RecyclerView. Item decorations can affect both measurement and drawing of individual item views.

    Item decorations are ordered. Decorations placed earlier in the list will be run/queried/drawn first for their effects on item views. Padding added to views will be nested; a padding added by an earlier decoration will mean further item decorations in the list will be asked to draw/pad within the previous decoration's given area.

    Parameters
    decorindex
    Decoration to add
    Position in the decoration chain to insert this decoration at. If this value is negative the decoration will be added at the end.

    public void?addOnChildAttachStateChangeListener?(RecyclerView.OnChildAttachStateChangeListener?listener)

    Register a listener that will be notified whenever a child view is attached to or detached from RecyclerView.

    This listener will be called when a LayoutManager or the RecyclerView decides that a child view is no longer needed. If an application associates expensive or heavyweight data with item views, this may be a good place to release or free those resources.

    Parameters
    listener
    Listener to register

    public void?addOnItemTouchListener?(RecyclerView.OnItemTouchListener?listener)

    Add an?RecyclerView.OnItemTouchListener?to intercept touch events before they are dispatched to child views or this view's standard scrolling behavior.

    Client code may use listeners to implement item manipulation behavior. Once a listener returns true from?onInterceptTouchEvent(RecyclerView, MotionEvent)?itsonTouchEvent(RecyclerView, MotionEvent)?method will be called for each incoming MotionEvent until the end of the gesture.

    Parameters
    listener
    Listener to add
    See Also
    • RecyclerView.SimpleOnItemTouchListener

    public void?addOnScrollListener?(RecyclerView.OnScrollListener?listener)

    Add a listener that will be notified of any changes in scroll state or position.

    Components that add a listener should take care to remove it when finished. Other components that take ownership of a view may call?clearOnScrollListeners()to remove all attached listeners.

    Parameters
    listener
    listener to set or null to clear

    public void?clearOnChildAttachStateChangeListeners?()

    Removes all listeners that were added via?addOnChildAttachStateChangeListener(OnChildAttachStateChangeListener).

    public void?clearOnScrollListeners?()

    Remove all secondary listener that were notified of any changes in scroll state or position.

    public int?computeHorizontalScrollExtent?()

    Compute the horizontal extent of the horizontal scrollbar's thumb within the horizontal range. This value is used to compute the length of the thumb within the scrollbar's track.

    The range is expressed in arbitrary units that must be the same as the units used by?computeHorizontalScrollRange()?and?computeHorizontalScrollOffset().

    Default implementation returns 0.

    If you want to support scroll bars, override?computeHorizontalScrollExtent(RecyclerView.State)?in your LayoutManager.

    Returns
    • The horizontal extent of the scrollbar's thumb
    See Also
    • computeHorizontalScrollExtent(RecyclerView.State)

    public int?computeHorizontalScrollOffset?()

    Compute the horizontal offset of the horizontal scrollbar's thumb within the horizontal range. This value is used to compute the length of the thumb within the scrollbar's track.

    The range is expressed in arbitrary units that must be the same as the units used by?computeHorizontalScrollRange()?and?computeHorizontalScrollExtent().

    Default implementation returns 0.

    If you want to support scroll bars, override?computeHorizontalScrollOffset(RecyclerView.State)?in your LayoutManager.

    Returns
    • The horizontal offset of the scrollbar's thumb
    See Also
    • (RecyclerView.Adapter)

    public int?computeHorizontalScrollRange?()

    Compute the horizontal range that the horizontal scrollbar represents.

    The range is expressed in arbitrary units that must be the same as the units used by?computeHorizontalScrollExtent()?and?computeHorizontalScrollOffset().

    Default implementation returns 0.

    If you want to support scroll bars, override?computeHorizontalScrollRange(RecyclerView.State)?in your LayoutManager.

    Returns
    • The total horizontal range represented by the vertical scrollbar
    See Also
    • computeHorizontalScrollRange(RecyclerView.State)

    public int?computeVerticalScrollExtent?()

    Compute the vertical extent of the vertical scrollbar's thumb within the vertical range. This value is used to compute the length of the thumb within the scrollbar's track.

    The range is expressed in arbitrary units that must be the same as the units used by?computeVerticalScrollRange()?and?computeVerticalScrollOffset().

    Default implementation returns 0.

    If you want to support scroll bars, override?computeVerticalScrollExtent(RecyclerView.State)?in your LayoutManager.

    Returns
    • The vertical extent of the scrollbar's thumb
    See Also
    • computeVerticalScrollExtent(RecyclerView.State)

    public int?computeVerticalScrollOffset?()

    Compute the vertical offset of the vertical scrollbar's thumb within the vertical range. This value is used to compute the length of the thumb within the scrollbar's track.

    The range is expressed in arbitrary units that must be the same as the units used by?computeVerticalScrollRange()?and?computeVerticalScrollExtent().

    Default implementation returns 0.

    If you want to support scroll bars, override?computeVerticalScrollOffset(RecyclerView.State)?in your LayoutManager.

    Returns
    • The vertical offset of the scrollbar's thumb
    See Also
    • (RecyclerView.Adapter)

    public int?computeVerticalScrollRange?()

    Compute the vertical range that the vertical scrollbar represents.

    The range is expressed in arbitrary units that must be the same as the units used by?computeVerticalScrollExtent()?and?computeVerticalScrollOffset().

    Default implementation returns 0.

    If you want to support scroll bars, override?computeVerticalScrollRange(RecyclerView.State)?in your LayoutManager.

    Returns
    • The total vertical range represented by the vertical scrollbar
    See Also
    • computeVerticalScrollRange(RecyclerView.State)

    public boolean?dispatchNestedFling?(float velocityX, float velocityY, boolean consumed)

    Dispatch a fling to a nested scrolling parent.

    This method should be used to indicate that a nested scrolling child has detected suitable conditions for a fling. Generally this means that a touch scroll has ended with a?velocity?in the direction of scrolling that meets or exceeds the?minimum fling velocity?along a scrollable axis.

    If a nested scrolling child view would normally fling but it is at the edge of its own content, it can use this method to delegate the fling to its nested scrolling parent instead. The parent may optionally consume the fling or observe a child fling.

    Parameters
    velocityXvelocityYconsumed
    Horizontal fling velocity in pixels per second
    Vertical fling velocity in pixels per second
    true if the child consumed the fling, false otherwise
    Returns
    • true if the nested scrolling parent consumed or otherwise reacted to the fling

    public boolean?dispatchNestedPreFling?(float velocityX, float velocityY)

    Dispatch a fling to a nested scrolling parent before it is processed by this view.

    Nested pre-fling events are to nested fling events what touch intercept is to touch and what nested pre-scroll is to nested scroll.?dispatchNestedPreFling?offsets an opportunity for the parent view in a nested fling to fully consume the fling before the child view consumes it. If this method returns?true, a nested parent view consumed the fling and this view should not scroll as a result.

    For a better user experience, only one view in a nested scrolling chain should consume the fling at a time. If a parent view consumed the fling this method will return false. Custom view implementations should account for this in two ways:

    • If a custom view is paged and needs to settle to a fixed page-point, do not call?dispatchNestedPreFling; consume the fling and settle to a valid position regardless.
    • If a nested parent does consume the fling, this view should not scroll at all, even to settle back to a valid idle position.

    Views should also not offer fling velocities to nested parent views along an axis where scrolling is not currently supported; a?ScrollView?should not offer a horizontal fling velocity to its parents since scrolling along that axis is not permitted and carrying velocity along that motion does not make sense.

    Parameters
    velocityXvelocityY
    Horizontal fling velocity in pixels per second
    Vertical fling velocity in pixels per second
    Returns
    • true if a nested scrolling parent consumed the fling

    public boolean?dispatchNestedPreScroll?(int dx, int dy, int[] consumed, int[] offsetInWindow)

    Dispatch one step of a nested scroll in progress before this view consumes any portion of it.

    Nested pre-scroll events are to nested scroll events what touch intercept is to touch.?dispatchNestedPreScroll?offers an opportunity for the parent view in a nested scrolling operation to consume some or all of the scroll operation before the child view consumes it.

    Parameters
    dxdyconsumedoffsetInWindow
    Horizontal scroll distance in pixels
    Vertical scroll distance in pixels
    Output. If not null, consumed[0] will contain the consumed component of dx and consumed[1] the consumed dy.
    Optional. If not null, on return this will contain the offset in local view coordinates of this view from before this operation to after it completes. View implementations may use this to adjust expected input coordinate tracking.
    Returns
    • true if the parent consumed some or all of the scroll delta

    public boolean?dispatchNestedScroll?(int dxConsumed, int dyConsumed, int dxUnconsumed, int dyUnconsumed, int[] offsetInWindow)

    Dispatch one step of a nested scroll in progress.

    Implementations of views that support nested scrolling should call this to report info about a scroll in progress to the current nested scrolling parent. If a nested scroll is not currently in progress or nested scrolling is not?enabled?for this view this method does nothing.

    Compatible View implementations should also call?dispatchNestedPreScroll?before consuming a component of the scroll event themselves.

    Parameters
    dxConsumeddyConsumeddxUnconsumeddyUnconsumedoffsetInWindow
    Horizontal distance in pixels consumed by this view during this scroll step
    Vertical distance in pixels consumed by this view during this scroll step
    Horizontal scroll distance in pixels not consumed by this view
    Horizontal scroll distance in pixels not consumed by this view
    Optional. If not null, on return this will contain the offset in local view coordinates of this view from before this operation to after it completes. View implementations may use this to adjust expected input coordinate tracking.
    Returns
    • true if the event was dispatched, false if it could not be dispatched.

    public void?draw?(Canvas?c)

    Manually render this view (and all of its children) to the given Canvas. The view must have already done a full layout before this function is called. When implementing a view, implement?onDraw(android.graphics.Canvas)?instead of overriding this method. If you do need to override this method, call the superclass version.

    Parameters
    c
    The Canvas to which the View is rendered.

    public boolean?drawChild?(Canvas?canvas,?View?child, long drawingTime)

    Draw one child of this View Group. This method is responsible for getting the canvas in the right state. This includes clipping, translating so that the child's scrolled origin is at 0, 0, and applying any animation transformations.

    Parameters
    canvaschilddrawingTime
    The canvas on which to draw the child
    Who to draw
    The time at which draw is occurring
    Returns
    • True if an invalidate() was issued

    public?View?findChildViewUnder?(float x, float y)

    Find the topmost view under the given point.

    Parameters
    xy
    Horizontal position in pixels to search
    Vertical position in pixels to search
    Returns
    • The child view under (x, y) or null if no matching child is found

    public?RecyclerView.ViewHolder?findViewHolderForAdapterPosition?(int position)

    Return the ViewHolder for the item in the given position of the data set. Unlike?findViewHolderForLayoutPosition(int)?this method takes into account any pending adapter changes that may not be reflected to the layout yet. On the other hand, if?notifyDataSetChanged()?has been called but the new layout has not been calculated yet, this method will return?null?since the new positions of views are unknown until the layout is calculated.

    This method checks only the children of RecyclerView. If the item at the given?position?is not laid out, it?will not?create a new one.

    Parameters
    position
    The position of the item in the data set of the adapter
    Returns
    • The ViewHolder at?position?or null if there is no such item

    public?RecyclerView.ViewHolder?findViewHolderForItemId?(long id)

    Return the ViewHolder for the item with the given id. The RecyclerView must use an Adapter with?stableIds?to return a non-null value.

    This method checks only the children of RecyclerView. If the item with the given?id?is not laid out, it?will not?create a new one.

    Parameters
    id
    The id for the requested item
    Returns
    • The ViewHolder with the given?id?or null if there is no such item

    public?RecyclerView.ViewHolder?findViewHolderForLayoutPosition?(int position)

    Return the ViewHolder for the item in the given position of the data set as of the latest layout pass.

    This method checks only the children of RecyclerView. If the item at the given?position?is not laid out, it?will not?create a new one.

    Note that when Adapter contents change, ViewHolder positions are not updated until the next layout calculation. If there are pending adapter updates, the return value of this method may not match your adapter contents. You can use #getAdapterPosition()?to get the current adapter position of a ViewHolder.

    Parameters
    position
    The position of the item in the data set of the adapter
    Returns
    • The ViewHolder at?position?or null if there is no such item

    public?RecyclerView.ViewHolder?findViewHolderForPosition?(int position)

    This method is deprecated.
    use?findViewHolderForLayoutPosition(int)?or?findViewHolderForAdapterPosition(int)

    public boolean?fling?(int velocityX, int velocityY)

    Begin a standard fling with an initial velocity along each axis in pixels per second. If the velocity given is below the system-defined minimum this method will return false and no fling will occur.

    Parameters
    velocityXvelocityY
    Initial horizontal velocity in pixels per second
    Initial vertical velocity in pixels per second
    Returns
    • true if the fling was started, false if the velocity was too low to fling or LayoutManager does not support scrolling in the axis fling is issued.
    See Also
    • canScrollVertically()
    • canScrollHorizontally()

    public?View?focusSearch?(View?focused, int direction)

    Find the nearest view in the specified direction that wants to take focus.

    Parameters
    focuseddirection
    The view that currently has focus
    One of FOCUS_UP, FOCUS_DOWN, FOCUS_LEFT, and FOCUS_RIGHT, or 0 for not applicable.

    public?ViewGroup.LayoutParams?generateLayoutParams?(AttributeSet?attrs)

    Returns a new set of layout parameters based on the supplied attributes set.

    Parameters
    attrs
    the attributes to build the layout parameters from
    Returns
    • an instance of?ViewGroup.LayoutParams?or one of its descendants

    public?Adapter?getAdapter?()

    Retrieves the previously set adapter or null if no adapter is set.

    Returns
    • The previously set adapter
    See Also
    • setAdapter(Adapter)

    public int?getBaseline?()

    Return the offset of the RecyclerView's text baseline from the its top boundary. If the LayoutManager of this RecyclerView does not support baseline alignment, this method returns -1.

    Returns
    • the offset of the baseline within the RecyclerView's bounds or -1 if baseline alignment is not supported

    public int?getChildAdapterPosition?(View?child)

    Return the adapter position that the given child view corresponds to.

    Parameters
    child
    Child View to query
    Returns
    • Adapter position corresponding to the given view or?NO_POSITION

    public long?getChildItemId?(View?child)

    Return the stable item id that the given child view corresponds to.

    Parameters
    child
    Child View to query
    Returns
    • Item id corresponding to the given view or?NO_ID

    public int?getChildLayoutPosition?(View?child)

    Return the adapter position of the given child view as of the latest completed layout pass.

    This position may not be equal to Item's adapter position if there are pending changes in the adapter which have not been reflected to the layout yet.

    Parameters
    child
    Child View to query
    Returns
    • Adapter position of the given View as of last layout pass or?NO_POSITION?if the View is representing a removed item.

    public int?getChildPosition?(View?child)

    This method is deprecated.
    use?getChildAdapterPosition(View)?or?getChildLayoutPosition(View).

    public?RecyclerView.ViewHolder?getChildViewHolder?(View?child)

    Retrieve the?RecyclerView.ViewHolder?for the given child view.

    Parameters
    child
    Child of this RecyclerView to query for its ViewHolder
    Returns
    • The child view's ViewHolder

    public?RecyclerViewAccessibilityDelegate?getCompatAccessibilityDelegate?()

    Returns the accessibility delegate compatibility implementation used by the RecyclerView.

    Returns
    • An instance of AccessibilityDelegateCompat used by RecyclerView

    public?RecyclerView.ItemAnimator?getItemAnimator?()

    Gets the current ItemAnimator for this RecyclerView. A null return value indicates that there is no animator and that item changes will happen without any animations. By default, RecyclerView instantiates and uses an instance of?DefaultItemAnimator.

    Returns
    • ItemAnimator The current ItemAnimator. If null, no animations will occur when changes occur to the items in this RecyclerView.

    public?RecyclerView.LayoutManager?getLayoutManager?()

    Return the?RecyclerView.LayoutManager?currently responsible for layout policy for this RecyclerView.

    Returns
    • The currently bound LayoutManager

    public int?getMaxFlingVelocity?()

    Returns the maximum fling velocity used by this RecyclerView.

    Returns
    • The maximum fling velocity used by this RecyclerView.

    public int?getMinFlingVelocity?()

    Returns the minimum velocity to start a fling.

    Returns
    • The minimum velocity to start a fling

    public?RecyclerView.RecycledViewPool?getRecycledViewPool?()

    Retrieve this RecyclerView's?RecyclerView.RecycledViewPool. This method will never return null; if no pool is set for this view a new one will be created. SeesetRecycledViewPool?for more information.

    Returns
    • The pool used to store recycled item views for reuse.
    See Also
    • setRecycledViewPool(RecycledViewPool)

    public int?getScrollState?()

    Return the current scrolling state of the RecyclerView.

    Returns
    • SCROLL_STATE_IDLE,?SCROLL_STATE_DRAGGING?or?SCROLL_STATE_SETTLING

    public boolean?hasFixedSize?()

    Returns
    • true if the app has specified that changes in adapter content cannot change the size of the RecyclerView itself.

    public boolean?hasNestedScrollingParent?()

    Returns true if this view has a nested scrolling parent.

    The presence of a nested scrolling parent indicates that this view has initiated a nested scroll and it was accepted by an ancestor view further up the view hierarchy.

    Returns
    • whether this view has a nested scrolling parent

    public boolean?hasPendingAdapterUpdates?()

    Returns whether there are pending adapter updates which are not yet applied to the layout.

    If this method returns?true, it means that what user is currently seeing may not reflect them adapter contents (depending on what has changed). You may use this information to defer or cancel some operations.

    This method returns true if RecyclerView has not yet calculated the first layout after it is attached to the Window or the Adapter has been replaced.

    Returns
    • True if there are some adapter updates which are not yet reflected to layout or false if layout is up to date.

    public void?invalidateItemDecorations?()

    Invalidates all ItemDecorations. If RecyclerView has item decorations, calling this method will trigger a?requestLayout()?call.

    public boolean?isAnimating?()

    Returns true if RecyclerView is currently running some animations.

    If you want to be notified when animations are finished, use?isRunning(ItemAnimator.ItemAnimatorFinishedListener).

    Returns
    • True if there are some item animations currently running or waiting to be started.

    public boolean?isAttachedToWindow?()

    Returns true if RecyclerView is attached to window.

    public boolean?isComputingLayout?()

    Returns whether RecyclerView is currently computing a layout.

    If this method returns true, it means that RecyclerView is in a lockdown state and any attempt to update adapter contents will result in an exception because adapter contents cannot be changed while RecyclerView is trying to compute the layout.

    It is very unlikely that your code will be running during this state as it is called by the framework when a layout traversal happens or RecyclerView starts to scroll in response to system events (touch, accessibility etc).

    This case may happen if you have some custom logic to change adapter contents in response to a View callback (e.g. focus change callback) which might be triggered during a layout calculation. In these cases, you should just postpone the change using a Handler or a similar mechanism.

    Returns
    • true?if RecyclerView is currently computing a layout,?false?otherwise

    public boolean?isLayoutFrozen?()

    Returns true if layout and scroll are frozen.

    Returns
    • true if layout and scroll are frozen
    See Also
    • setLayoutFrozen(boolean)

    public boolean?isNestedScrollingEnabled?()

    Returns true if nested scrolling is enabled for this view.

    If nested scrolling is enabled and this View class implementation supports it, this view will act as a nested scrolling child view when applicable, forwarding data about the scroll operation in progress to a compatible and cooperating nested scrolling parent.

    Returns
    • true if nested scrolling is enabled

    public void?offsetChildrenHorizontal?(int dx)

    Offset the bounds of all child views by?dx?pixels. Useful for implementing simple scrolling in?LayoutManagers.

    Parameters
    dx
    Horizontal pixel offset to apply to the bounds of all child views

    public void?offsetChildrenVertical?(int dy)

    Offset the bounds of all child views by?dy?pixels. Useful for implementing simple scrolling in?LayoutManagers.

    Parameters
    dy
    Vertical pixel offset to apply to the bounds of all child views

    public void?onChildAttachedToWindow?(View?child)

    Called when an item view is attached to this RecyclerView.

    Subclasses of RecyclerView may want to perform extra bookkeeping or modifications of child views as they become attached. This will be called before aRecyclerView.LayoutManager?measures or lays out the view and is a good time to perform these changes.

    Parameters
    child
    Child view that is now attached to this RecyclerView and its associated window

    public void?onChildDetachedFromWindow?(View?child)

    Called when an item view is detached from this RecyclerView.

    Subclasses of RecyclerView may want to perform extra bookkeeping or modifications of child views as they become detached. This will be called as aRecyclerView.LayoutManager?fully detaches the child view from the parent and its window.

    Parameters
    child
    Child view that is now detached from this RecyclerView and its associated window

    public void?onDraw?(Canvas?c)

    Implement this to do your drawing.

    Parameters
    c
    the canvas on which the background will be drawn

    public boolean?onGenericMotionEvent?(MotionEvent?event)

    Implement this method to handle generic motion events.

    Generic motion events describe joystick movements, mouse hovers, track pad touches, scroll wheel movements and other input events. The?source?of the motion event specifies the class of input that was received. Implementations of this method must examine the bits in the source before processing the event. The following code example shows how this is done.

    Generic motion events with source class?SOURCE_CLASS_POINTER?are delivered to the view under the pointer. All other generic motion events are delivered to the focused view.

    ?public boolean onGenericMotionEvent(MotionEvent event) {if (event.isFromSource(InputDevice.SOURCE_CLASS_JOYSTICK)) {if (event.getAction() == MotionEvent.ACTION_MOVE) {// process the joystick movement...return true;}}if (event.isFromSource(InputDevice.SOURCE_CLASS_POINTER)) {switch (event.getAction()) {case MotionEvent.ACTION_HOVER_MOVE:// process the mouse hover movement...return true;case MotionEvent.ACTION_SCROLL:// process the scroll wheel movement...return true;}}return super.onGenericMotionEvent(event);}

    Parameters
    event
    The generic motion event being processed.
    Returns
    • True if the event was handled, false otherwise.

    public boolean?onInterceptTouchEvent?(MotionEvent?e)

    Implement this method to intercept all touch screen motion events. This allows you to watch events as they are dispatched to your children, and take ownership of the current gesture at any point.

    Using this function takes some care, as it has a fairly complicated interaction with?View.onTouchEvent(MotionEvent), and using it requires implementing that method as well as this one in the correct way. Events will be received in the following order:

  • You will receive the down event here.
  • The down event will be handled either by a child of this view group, or given to your own onTouchEvent() method to handle; this means you should implement onTouchEvent() to return true, so you will continue to see the rest of the gesture (instead of looking for a parent view to handle it). Also, by returning true from onTouchEvent(), you will not receive any following events in onInterceptTouchEvent() and all touch processing must happen in onTouchEvent() like normal.
  • For as long as you return false from this function, each following event (up to and including the final up) will be delivered first here and then to the target's onTouchEvent().
  • If you return true from here, you will not receive any following events: the target view will receive the same event but with the action?ACTION_CANCEL, and all further events will be delivered to your onTouchEvent() method and no longer appear here.
  • Parameters
    e
    The motion event being dispatched down the hierarchy.
    Returns
    • Return true to steal motion events from the children and have them dispatched to this ViewGroup through onTouchEvent(). The current target will receive an ACTION_CANCEL event, and no further messages will be delivered here.

    public void?onScrollStateChanged?(int state)

    Called when the scroll state of this RecyclerView changes. Subclasses should use this method to respond to state changes instead of an explicit listener.

    This method will always be invoked before listeners, but after the LayoutManager responds to the scroll state change.

    Parameters
    state
    the new scroll state, one of?SCROLL_STATE_IDLE,?SCROLL_STATE_DRAGGING?or?SCROLL_STATE_SETTLING

    public void?onScrolled?(int dx, int dy)

    Called when the scroll position of this RecyclerView changes. Subclasses should use this method to respond to scrolling within the adapter's data set instead of an explicit listener.

    This method will always be invoked before listeners. If a subclass needs to perform any additional upkeep or bookkeeping after scrolling but before listeners run, this is a good place to do so.

    This differs from?onScrollChanged(int, int, int, int)?in that it receives the distance scrolled in either direction within the adapter's data set instead of absolute scroll coordinates. Since RecyclerView cannot compute the absolute scroll position from any arbitrary point in the data set,?onScrollChanged?will always receive the current?getScrollX()?and?getScrollY()?values which do not correspond to the data set scroll position. However, some subclasses may choose to use these fields as special offsets.

    Parameters
    dxdy
    horizontal distance scrolled in pixels
    vertical distance scrolled in pixels

    public boolean?onTouchEvent?(MotionEvent?e)

    Implement this method to handle touch screen motion events.

    If this method is used to detect click actions, it is recommended that the actions be performed by implementing and calling?performClick(). This will ensure consistent system behavior, including:

    • obeying click sound preferences
    • dispatching OnClickListener calls
    • handling?ACTION_CLICK?when accessibility features are enabled

    Parameters
    e
    The motion event.
    Returns
    • True if the event was handled, false otherwise.

    public void?removeItemDecoration?(RecyclerView.ItemDecoration?decor)

    Remove an?RecyclerView.ItemDecoration?from this RecyclerView.

    The given decoration will no longer impact the measurement and drawing of item views.

    Parameters
    decor
    Decoration to remove
    See Also
    • addItemDecoration(ItemDecoration)

    public void?removeOnChildAttachStateChangeListener?(RecyclerView.OnChildAttachStateChangeListener?listener)

    Removes the provided listener from child attached state listeners list.

    Parameters
    listener
    Listener to unregister

    public void?removeOnItemTouchListener?(RecyclerView.OnItemTouchListener?listener)

    Remove an?RecyclerView.OnItemTouchListener. It will no longer be able to intercept touch events.

    Parameters
    listener
    Listener to remove

    public void?removeOnScrollListener?(RecyclerView.OnScrollListener?listener)

    Remove a listener that was notified of any changes in scroll state or position.

    Parameters
    listener
    listener to set or null to clear

    public void?requestChildFocus?(View?child,?View?focused)

    Called when a child of this parent wants focus

    Parameters
    childfocused
    The child of this ViewParent that wants focus. This view will contain the focused view. It is not necessarily the view that actually has focus.
    The view that is a descendant of child that actually has focus

    public boolean?requestChildRectangleOnScreen?(View?child,?Rect?rect, boolean immediate)

    Called when a child of this group wants a particular rectangle to be positioned onto the screen.?ViewGroups overriding this can trust that:

    • child will be a direct child of this group
    • rectangle will be in the child's coordinates

    ViewGroups overriding this should uphold the contract:

    • nothing will change if the rectangle is already visible
    • the view port will be scrolled only just enough to make the rectangle visible
    Parameters
    childrectimmediate
    The direct child making the request.
    The rectangle in the child's coordinates the child wishes to be on the screen.
    True to forbid animated or delayed scrolling, false otherwise
    Returns
    • Whether the group scrolled to handle the operation

    public void?requestDisallowInterceptTouchEvent?(boolean disallowIntercept)

    Called when a child does not want this parent and its ancestors to intercept touch events with?onInterceptTouchEvent(MotionEvent).

    This parent should pass this call onto its parents. This parent must obey this request for the duration of the touch (that is, only clear the flag after this parent has received an up or a cancel.

    Parameters
    disallowIntercept
    True if the child does not want the parent to intercept touch events.

    public void?requestLayout?()

    Call this when something has changed which has invalidated the layout of this view. This will schedule a layout pass of the view tree. This should not be called while the view hierarchy is currently in a layout pass (isInLayout(). If layout is happening, the request may be honored at the end of the current layout pass (and then layout will run again) or after the current frame is drawn and the next layout occurs.

    Subclasses which override this method should call the superclass method to handle possible request-during-layout errors correctly.

    public void?scrollBy?(int x, int y)

    Move the scrolled position of your view. This will cause a call to?onScrollChanged(int, int, int, int)?and the view will be invalidated.

    Parameters
    xy
    the amount of pixels to scroll by horizontally
    the amount of pixels to scroll by vertically

    public void?scrollTo?(int x, int y)

    Set the scrolled position of your view. This will cause a call to?onScrollChanged(int, int, int, int)?and the view will be invalidated.

    Parameters
    xy
    the x position to scroll to
    the y position to scroll to

    public void?scrollToPosition?(int position)

    Convenience method to scroll to a certain position. RecyclerView does not implement scrolling logic, rather forwards the call to?scrollToPosition(int)

    Parameters
    position
    Scroll to this adapter position
    See Also
    • scrollToPosition(int)

    public void?sendAccessibilityEventUnchecked?(AccessibilityEvent?event)

    This method behaves exactly as?sendAccessibilityEvent(int)?but takes as an argument an empty?AccessibilityEvent?and does not perform a check whether accessibility is enabled.

    If an?View.AccessibilityDelegate?has been specified via calling?setAccessibilityDelegate(AccessibilityDelegate)?itssendAccessibilityEventUnchecked(View, AccessibilityEvent)?is responsible for handling this call.

    Parameters
    event
    The event to send.

    public void?setAccessibilityDelegateCompat?(RecyclerViewAccessibilityDelegate?accessibilityDelegate)

    Sets the accessibility delegate compatibility implementation used by RecyclerView.

    Parameters
    accessibilityDelegate
    The accessibility delegate to be used by RecyclerView.

    public void?setAdapter?(Adapter?adapter)

    Set a new adapter to provide child views on demand.

    When adapter is changed, all existing views are recycled back to the pool. If the pool has only one adapter, it will be cleared.

    Parameters
    adapter
    The new adapter to set, or null to set no adapter.
    See Also
    • swapAdapter(Adapter, boolean)

    public void?setChildDrawingOrderCallback?(RecyclerView.ChildDrawingOrderCallback?childDrawingOrderCallback)

    Sets the?RecyclerView.ChildDrawingOrderCallback?to be used for drawing children.

    See?getChildDrawingOrder(int, int)?for details. Calling this method will always call?setChildrenDrawingOrderEnabled(boolean). The parameter will be true if childDrawingOrderCallback is not null, false otherwise.

    Note that child drawing order may be overridden by View's elevation.

    Parameters
    childDrawingOrderCallback
    The ChildDrawingOrderCallback to be used by the drawing system.

    public void?setClipToPadding?(boolean clipToPadding)

    Sets whether this ViewGroup will clip its children to its padding and resize (but not clip) any EdgeEffect to the padded region, if padding is present.

    By default, children are clipped to the padding of their parent ViewGroup. This clipping behavior is only enabled if padding is non-zero.

    Parameters
    clipToPadding
    true to clip children to the padding of the group, and resize (but not clip) any EdgeEffect to the padded region. False otherwise.

    public void?setHasFixedSize?(boolean hasFixedSize)

    RecyclerView can perform several optimizations if it can know in advance that changes in adapter content cannot change the size of the RecyclerView itself. If your use of RecyclerView falls into this category, set this to true.

    Parameters
    hasFixedSize
    true if adapter changes cannot affect the size of the RecyclerView.

    public void?setItemAnimator?(RecyclerView.ItemAnimator?animator)

    Sets the?RecyclerView.ItemAnimator?that will handle animations involving changes to the items in this RecyclerView. By default, RecyclerView instantiates and uses an instance of?DefaultItemAnimator. Whether item animations are enabled for the RecyclerView depends on the ItemAnimator and whether the LayoutManager?supports item animations.

    Parameters
    animator
    The ItemAnimator being set. If null, no animations will occur when changes occur to the items in this RecyclerView.

    public void?setItemViewCacheSize?(int size)

    Set the number of offscreen views to retain before adding them to the potentially shared?recycled view pool.

    The offscreen view cache stays aware of changes in the attached adapter, allowing a LayoutManager to reuse those views unmodified without needing to return to the adapter to rebind them.

    Parameters
    size
    Number of views to cache offscreen before returning them to the general recycled view pool

    public void?setLayoutFrozen?(boolean frozen)

    Enable or disable layout and scroll. After?setLayoutFrozen(true)?is called, Layout requests will be postponed until?setLayoutFrozen(false)?is called; child views are not updated when RecyclerView is frozen,?smoothScrollBy(int, int),?scrollBy(int, int),?scrollToPosition(int)?and?smoothScrollToPosition(int)are dropped; TouchEvents and GenericMotionEvents are dropped;?onFocusSearchFailed(View, int, Recycler, State)?will not be called.

    setLayoutFrozen(true)?does not prevent app from directly calling?scrollToPosition(int),?smoothScrollToPosition(RecyclerView, State, int).

    setAdapter(Adapter)?and?swapAdapter(Adapter, boolean)?will automatically stop frozen.

    Note: Running ItemAnimator is not stopped automatically, it's caller's responsibility to call ItemAnimator.end().

    Parameters
    frozen
    true to freeze layout and scroll, false to re-enable.

    public void?setLayoutManager?(RecyclerView.LayoutManager?layout)

    Set the?RecyclerView.LayoutManager?that this RecyclerView will use.

    In contrast to other adapter-backed views such as?ListView?or?GridView, RecyclerView allows client code to provide custom layout arrangements for child views. These arrangements are controlled by the?RecyclerView.LayoutManager. A LayoutManager must be provided for RecyclerView to function.

    Several default strategies are provided for common uses such as lists and grids.

    Parameters
    layout
    LayoutManager to use

    public void?setNestedScrollingEnabled?(boolean enabled)

    Enable or disable nested scrolling for this view.

    If this property is set to true the view will be permitted to initiate nested scrolling operations with a compatible parent view in the current hierarchy. If this view does not implement nested scrolling this will have no effect. Disabling nested scrolling while a nested scroll is in progress has the effect of?stopping?the nested scroll.

    Parameters
    enabled
    true to enable nested scrolling, false to disable

    public void?setOnScrollListener?(RecyclerView.OnScrollListener?listener)

    This method is deprecated.
    Use?addOnScrollListener(OnScrollListener)?and?removeOnScrollListener(OnScrollListener)

    Set a listener that will be notified of any changes in scroll state or position.

    Parameters
    listener
    Listener to set or null to clear

    public void?setRecycledViewPool?(RecyclerView.RecycledViewPool?pool)

    Recycled view pools allow multiple RecyclerViews to share a common pool of scrap views. This can be useful if you have multiple RecyclerViews with adapters that use the same view types, for example if you have several data sets with the same kinds of item views displayed by a?ViewPager.

    Parameters
    pool
    Pool to set. If this parameter is null a new pool will be created and used.

    public void?setRecyclerListener?(RecyclerView.RecyclerListener?listener)

    Register a listener that will be notified whenever a child view is recycled.

    This listener will be called when a LayoutManager or the RecyclerView decides that a child view is no longer needed. If an application associates expensive or heavyweight data with item views, this may be a good place to release or free those resources.

    Parameters
    listener
    Listener to register, or null to clear

    public void?setScrollingTouchSlop?(int slopConstant)

    Configure the scrolling touch slop for a specific use case. Set up the RecyclerView's scrolling motion threshold based on common usages. Valid arguments areTOUCH_SLOP_DEFAULT?and?TOUCH_SLOP_PAGING.

    Parameters
    slopConstant
    One of the?TOUCH_SLOP_?constants representing the intended usage of this RecyclerView

    public void?setViewCacheExtension?(RecyclerView.ViewCacheExtension?extension)

    Sets a new?RecyclerView.ViewCacheExtension?to be used by the Recycler.

    Parameters
    extension
    ViewCacheExtension to be used or null if you want to clear the existing one.
    See Also
    • ERROR(ViewCacheExtension#getViewForPositionAndType(Recycler, int, int)} /{@link ViewCacheExtension#getViewForPositionAndType(Recycler, int, int)})

    public void?smoothScrollBy?(int dx, int dy)

    Animate a scroll by the given amount of pixels along either axis.

    Parameters
    dxdy
    Pixels to scroll horizontally
    Pixels to scroll vertically

    public void?smoothScrollToPosition?(int position)

    Starts a smooth scroll to an adapter position.

    To support smooth scrolling, you must override?smoothScrollToPosition(RecyclerView, State, int)?and create a?RecyclerView.SmoothScroller.

    RecyclerView.LayoutManager?is responsible for creating the actual scroll action. If you want to provide a custom smooth scroll logic, overridesmoothScrollToPosition(RecyclerView, State, int)?in your LayoutManager.

    Parameters
    position
    The adapter position to scroll to
    See Also
    • smoothScrollToPosition(RecyclerView, State, int)

    public boolean?startNestedScroll?(int axes)

    Begin a nestable scroll operation along the given axes.

    A view starting a nested scroll promises to abide by the following contract:

    The view will call startNestedScroll upon initiating a scroll operation. In the case of a touch scroll this corresponds to the initial?ACTION_DOWN. In the case of touch scrolling the nested scroll will be terminated automatically in the same manner as?requestDisallowInterceptTouchEvent(boolean). In the event of programmatic scrolling the caller must explicitly call?stopNestedScroll()?to indicate the end of the nested scroll.

    If?startNestedScroll?returns true, a cooperative parent was found. If it returns false the caller may ignore the rest of this contract until the next scroll. Calling startNestedScroll while a nested scroll is already in progress will return true.

    At each incremental step of the scroll the caller should invoke?dispatchNestedPreScroll?once it has calculated the requested scrolling delta. If it returns true the nested scrolling parent at least partially consumed the scroll and the caller should adjust the amount it scrolls by.

    After applying the remainder of the scroll delta the caller should invoke?dispatchNestedScroll, passing both the delta consumed and the delta unconsumed. A nested scrolling parent may treat these values differently. See?onNestedScroll(View, int, int, int, int).

    Parameters
    axes
    Flags consisting of a combination of?SCROLL_AXIS_HORIZONTAL?and/or?SCROLL_AXIS_VERTICAL.
    Returns
    • true if a cooperative parent was found and nested scrolling has been enabled for the current gesture.

    public void?stopNestedScroll?()

    Stop a nested scroll in progress.

    Calling this method when a nested scroll is not currently in progress is harmless.

    public void?stopScroll?()

    Stop any current scroll in progress, such as one started by?smoothScrollBy(int, int),?fling(int, int)?or a touch-initiated fling.

    public void?swapAdapter?(Adapter?adapter, boolean removeAndRecycleExistingViews)

    Swaps the current adapter with the provided one. It is similar to?setAdapter(Adapter)?but assumes existing adapter and the new adapter uses the sameRecyclerView.ViewHolder?and does not clear the RecycledViewPool.

    Note that it still calls onAdapterChanged callbacks.

    Parameters
    adapterremoveAndRecycleExistingViews
    The new adapter to set, or null to set no adapter.
    If set to true, RecyclerView will recycle all existing Views. If adapters have stable ids and/or you want to animate the disappearing views, you may prefer to set this to false.
    See Also
    • setAdapter(Adapter)

    Protected Methods

    protected boolean?checkLayoutParams?(ViewGroup.LayoutParams?p)

    protected void?dispatchRestoreInstanceState?(SparseArray<Parcelable> container)

    Override to prevent thawing of any views created by the adapter.

    Parameters
    container
    The SparseArray which holds previously saved state.

    protected void?dispatchSaveInstanceState?(SparseArray<Parcelable> container)

    Override to prevent freezing of any views created by the adapter.

    Parameters
    container
    The SparseArray in which to save the view's state.

    protected?ViewGroup.LayoutParams?generateDefaultLayoutParams?()

    Returns a set of default layout parameters. These parameters are requested when the View passed to?addView(View)?has no layout parameters already set. If null is returned, an exception is thrown from addView.

    Returns
    • a set of default layout parameters or null

    protected?ViewGroup.LayoutParams?generateLayoutParams?(ViewGroup.LayoutParams?p)

    Returns a safe set of layout parameters based on the supplied layout params. When a ViewGroup is passed a View whose layout params do not pass the test ofcheckLayoutParams(android.view.ViewGroup.LayoutParams), this method is invoked. This method should return a new set of layout params suitable for this ViewGroup, possibly by copying the appropriate attributes from the specified set of layout params.

    Parameters
    p
    The layout parameters to convert into a suitable set of layout parameters for this ViewGroup.
    Returns
    • an instance of?ViewGroup.LayoutParams?or one of its descendants

    protected int?getChildDrawingOrder?(int childCount, int i)

    Returns the index of the child to draw for this iteration. Override this if you want to change the drawing order of children. By default, it returns i.

    NOTE: In order for this method to be called, you must enable child ordering first by calling?setChildrenDrawingOrderEnabled(boolean).

    Parameters
    i
    The current iteration.
    Returns
    • The index of the child to draw this iteration.

    protected void?onAttachedToWindow?()

    This is called when the view is attached to a window. At this point it has a Surface and will start drawing. Note that this function is guaranteed to be called beforeonDraw(android.graphics.Canvas), however it may be called any time before the first onDraw -- including before or after?onMeasure(int, int).

    protected void?onDetachedFromWindow?()

    This is called when the view is detached from a window. At this point it no longer has a surface for drawing.

    protected void?onLayout?(boolean changed, int l, int t, int r, int b)

    Called from layout when this view should assign a size and position to each of its children. Derived classes with children should override this method and call layout on each of their children.

    Parameters
    changedltrb
    This is a new size or position for this view
    Left position, relative to parent
    Top position, relative to parent
    Right position, relative to parent
    Bottom position, relative to parent

    protected void?onMeasure?(int widthSpec, int heightSpec)

    Measure the view and its content to determine the measured width and the measured height. This method is invoked by?measure(int, int)?and should be overridden by subclasses to provide accurate and efficient measurement of their contents.

    CONTRACT:?When overriding this method, you?must?call?setMeasuredDimension(int, int)?to store the measured width and height of this view. Failure to do so will trigger an?IllegalStateException, thrown by?measure(int, int). Calling the superclass'?onMeasure(int, int)?is a valid use.

    The base class implementation of measure defaults to the background size, unless a larger size is allowed by the MeasureSpec. Subclasses should overrideonMeasure(int, int)?to provide better measurements of their content.

    If this method is overridden, it is the subclass's responsibility to make sure the measured height and width are at least the view's minimum height and width (getSuggestedMinimumHeight()?and?getSuggestedMinimumWidth()).

    Parameters
    widthSpecheightSpec
    horizontal space requirements as imposed by the parent. The requirements are encoded with?View.MeasureSpec.
    vertical space requirements as imposed by the parent. The requirements are encoded with?View.MeasureSpec.

    protected void?onRestoreInstanceState?(Parcelable?state)

    Hook allowing a view to re-apply a representation of its internal state that had previously been generated by?onSaveInstanceState(). This function will never be called with a null state.

    Parameters
    state
    The frozen state that had previously been returned by?onSaveInstanceState().

    protected?Parcelable?onSaveInstanceState?()

    Hook allowing a view to generate a representation of its internal state that can later be used to create a new instance with that same state. This state should only contain information that is not persistent or can not be reconstructed later. For example, you will never store your current position on screen because that will be computed again when a new instance of the view is placed in its view hierarchy.

    Some examples of things you may store here: the current cursor position in a text view (but usually not the text itself since that is stored in a content provider or other persistent storage), the currently selected item in a list view.

    Returns
    • Returns a Parcelable object containing the view's current dynamic state, or null if there is nothing interesting to save. The default implementation returns null.

    protected void?onSizeChanged?(int w, int h, int oldw, int oldh)

    This is called during layout when the size of this view has changed. If you were just added to the view hierarchy, you're called with the old values of 0.

    Parameters
    wholdwoldh
    Current width of this view.
    Current height of this view.
    Old width of this view.
    Old height of this view.

    protected void?removeDetachedView?(View?child, boolean animate)

    Finishes the removal of a detached view. This method will dispatch the detached from window event and notify the hierarchy change listener.

    This method is intended to be lightweight and makes no assumptions about whether the parent or child should be redrawn. Proper use of this method will include also making any appropriate?requestLayout()?or?invalidate()?calls. For example, callers can?post?a?Runnable?which performs a?requestLayout()?on the next frame, after all detach/remove calls are finished, causing layout to be run prior to redrawing the view hierarchy.

    Parameters
    childanimate
    the child to be definitely removed from the view hierarchy
    if true and the view has an animation, the view is placed in the disappearing views list, otherwise, it is detached from the window


    .

    總結

    以上是生活随笔為你收集整理的【Android应用开发】RecycleView API 翻译 (文档翻译)的全部內容,希望文章能夠幫你解決所遇到的問題。

    如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。

    日韩网站在线免费观看 | 欧美日本不卡高清 | 92精品国产成人观看免费 | 午夜精品一区二区三区免费 | 在线国产激情视频 | 欧美一区二区在线 | 国产精品欧美精品 | 日韩中文字幕国产精品 | 在线欧美最极品的av | 国产一区欧美在线 | 日韩精品在线视频 | 亚洲精品xxx | 一区二区三区免费在线观看视频 | 国产精品18久久久久久久久 | 激情五月婷婷综合 | 久草在线观 | 波多野结衣视频在线 | 日韩在线 一区二区 | 中文乱码视频在线观看 | 在线日韩一区 | 岛国一区在线 | 五月天色综合 | 久久99中文字幕 | 国产高清一区二区 | 欧美在线视频一区二区三区 | 在线看欧美 | 欧美韩国日本在线 | 五月婷婷视频在线 | 视频国产区 | 欧美日韩国产一区二 | 黄色在线免费观看网站 | 日日精品| 韩国av免费观看 | 在线精品亚洲一区二区 | 五月激情片 | 国产99精品 | 深爱激情站 | 国产视频一区精品 | 在线观看亚洲精品 | 亚洲精品资源在线 | 久久在线视频在线 | av看片网 | 夜夜操天天干 | 97视频在线观看视频免费视频 | 免费男女羞羞的视频网站中文字幕 | 中文字幕欲求不满 | 亚洲欧洲av在线 | 好看av在线 | 免费一级片观看 | 在线免费黄色 | 午夜影院三级 | 激情欧美一区二区免费视频 | 麻豆传媒视频在线播放 | 天天摸天天操天天爽 | 久久成人国产精品免费软件 | 美女黄频在线观看 | 亚洲日本在线视频观看 | 国产精品乱码一区二三区 | 欧美日韩视频在线观看一区二区 | 麻豆传媒电影在线观看 | 黄色免费在线视频 | 午夜精品福利影院 | 国产精品精品国产 | 亚洲人av免费网站 | 亚洲色图 校园春色 | 国产精品乱码一区二区视频 | 久久久电影 | 啪啪激情网 | 99热99热| 久久久精品综合 | 成人免费在线视频 | 夜夜狠狠 | 一区二区三区在线电影 | 成人在线观看影院 | 久操综合| 成人禁用看黄a在线 | 国产高清在线 | 成人wwwxxx视频 | 视频三区在线 | 黄色成人毛片 | 91麻豆精品国产午夜天堂 | 国产天天爽| 国内精品视频在线 | 久久国产精品99久久人人澡 | 亚洲第一伊人 | 日韩a级免费视频 | 久久亚洲欧美日韩精品专区 | 久久手机免费观看 | 一区精品在线 | 97电院网手机版 | 视频二区在线 | 久久精品草 | 色网免费观看 | 国产高清免费 | 亚洲国产精品传媒在线观看 | 在线看福利av | 日韩精品一区二区三区丰满 | 婷婷视频在线 | 婷婷精品在线视频 | 亚洲精品午夜视频 | 免费在线观看不卡av | 91精品国产欧美一区二区 | 狠狠色噜噜狠狠狠狠 | 国产xxxx性hd极品 | 九精品 | 久久久免费观看完整版 | 亚洲精品乱码久久久久久久久久 | 日本最新中文字幕 | 一区二区视频在线观看免费 | 亚洲免费色 | 4438全国亚洲精品在线观看视频 | 亚洲亚洲精品在线观看 | 激情网五月婷婷 | 中文字幕一区二区在线播放 | 久久香蕉电影 | 亚洲精品大片www | 久久久久久久国产精品视频 | av色影院| 草在线| 国产精品国产三级国产aⅴ9色 | 精品福利在线 | 久久精品牌麻豆国产大山 | 中文字幕av免费在线观看 | 免费午夜在线视频 | av高清网站在线观看 | 天天射天天艹 | 在线观看午夜 | 色网站在线观看 | 日韩高清片 | 亚洲精品久久久久久国 | 国产亚洲成av人片在线观看桃 | 人人干人人搞 | 一区二区视频在线免费观看 | 亚洲精品在线播放视频 | 国产成人综合精品 | 免费视频一区二区 | 综合色站 | 99精品乱码国产在线观看 | 全久久久久久久久久久电影 | 四虎影院在线观看av | 国产精品亚洲人在线观看 | 久久情侣偷拍 | 亚洲免费精品视频 | 99国产精品久久久久久久久久 | 怡红院av久久久久久久 | 狠狠色丁香婷婷综合久小说久 | 久草在线手机观看 | 日韩电影中文字幕在线 | 国产一区在线免费观看视频 | 黄色小说网站在线 | 激情五月婷婷激情 | 超碰在线公开 | 欧美a级片网站 | 在线观看视频你懂的 | 国产片网站 | 天天插天天狠天天透 | 九九涩涩av台湾日本热热 | 91人人干| 色综合久久久久综合 | 在线播放视频一区 | 婷婷在线网站 | 国产亚洲午夜高清国产拍精品 | 综合色亚洲| 久久婷亚洲五月一区天天躁 | www.午夜视频 | 日韩电影中文,亚洲精品乱码 | 超碰人人乐 | 毛片久久久 | 国产三级av在线 | 亚洲第一成网站 | 在线免费黄色av | 奇米影视999 | 久久久久久久久久久久久久电影 | 精品国产精品久久 | 亚洲国产影院 | 欧美日一级片 | 久久久精品欧美一区二区免费 | av免费网 | 青青河边草手机免费 | 亚洲精区二区三区四区麻豆 | 日本不卡一区二区 | 久久久免费高清视频 | 中文字幕二区在线观看 | 日韩国产欧美在线视频 | av免费看在线 | 日日干 天天干 | 349k.cc看片app| 成年人国产精品 | 爱射综合 | 国产成人精品一区二区三区网站观看 | 久久久久久久久久久久亚洲 | 久久久久日本精品一区二区三区 | 天天插天天爽 | 中文字幕有码在线 | 国内精品久久久久影院日本资源 | 日韩专区 在线 | 欧美极品少妇xxxxⅹ欧美极品少妇xxxx亚洲精品 | 麻豆精品国产传媒 | a√天堂中文在线 | 久久精品日本啪啪涩涩 | 国产黄色片久久 | 亚洲日本色 | 91麻豆精品国产91久久久无限制版 | 麻豆成人小视频 | 麻豆国产露脸在线观看 | 天天鲁天天干天天射 | 亚洲成a人片77777潘金莲 | 久久视频 | 国产原创在线视频 | 成人在线播放视频 | 久久精品视频网站 | 久久香蕉国产精品麻豆粉嫩av | 黄色av电影一级片 | 玖玖玖在线 | 日韩电影在线观看一区二区三区 | 在线视频第一页 | 久要激情网 | 91视频在线自拍 | 日韩精品免费 | 天天操天天弄 | 一区二区视频在线观看免费 | 久久天天操 | 国产电影黄色av | 日韩极品视频在线观看 | 国产成人av综合色 | 国产一级视屏 | 精品国产久 | 亚洲视频精品在线 | 久久精品香蕉 | 精品国产一区二区三区久久 | 日韩欧美在线中文字幕 | 日本久久精品 | 久久久免费看视频 | 国产久草在线观看 | 午夜久久久久 | 在线a人v观看视频 | 国产日产欧美在线观看 | 国产99久久久久久免费看 | 国产不卡在线观看视频 | 久久黄色精品视频 | 麻豆网站免费观看 | 综合激情伊人 | 精品免费 | 在线之家免费在线观看电影 | 久久tv| 国产一区二区三区高清播放 | 97成人资源 | 日本中文字幕在线免费观看 | 玖玖视频 | 99久久久国产精品美女 | 亚洲精品18日本一区app | 手机成人免费视频 | 国产精品久久久久9999吃药 | 国产精品系列在线观看 | 成人在线一区二区 | 中文字幕五区 | 国产精品丝袜 | 精品一区二三区 | www.夜夜草 | 女人18片毛片90分钟 | 久久五月婷婷丁香社区 | 91av视频免费在线观看 | av在线网站大全 | 黄色aaa毛片| 伊人视频 | 免费在线观看视频a | 日韩精品免费在线观看 | 国产二区视频在线观看 | 91在线国产观看 | 亚洲最大av| 久热久草 | 黄色小网站在线 | 精品国产福利在线 | 日本成人免费在线观看 | 一级一片免费视频 | 久久久国产一区二区三区 | 欧美激情奇米色 | 国产老妇av | 欧美日韩在线视频免费 | 免费在线观看不卡av | 国产成人久久77777精品 | 精品国产1区二区 | 精品日韩中文字幕 | 男女啪啪免费网站 | 亚洲麻豆精品 | 久久免费成人网 | 日本久久久久久科技有限公司 | 国产免费观看久久 | 国产精品门事件 | 在线视频精品播放 | 久久五月情影视 | 91av免费观看 | 91少妇精拍在线播放 | 狠狠躁夜夜av | 9i看片成人免费看片 | 青青河边草免费直播 | 国产区在线视频 | 天天干人人插 | 手机在线永久免费观看av片 | 中文字幕亚洲高清 | 国产精品成人一区二区 | 欧美日韩aaaa| 国产裸体无遮挡 | 激情丁香婷婷 | 国产最新在线观看 | a天堂最新版中文在线地址 久久99久久精品国产 | 久久综合色影院 | 欧美日韩国产一区二区三区 | 99久久国产免费免费 | 色视频在线看 | 白丝av免费观看 | 日韩二区在线播放 | 999久久久久久 | 亚洲一区二区三区四区在线视频 | 国产精品黄色在线观看 | 99久久婷婷国产综合精品 | 日韩激情在线 | 日韩欧美99| 国产精品一区在线播放 | 1区2区视频| 丁香六月婷婷激情 | 成人91在线| 亚洲一区二区视频在线播放 | 国产精品久久久久久久久久妇女 | 波多野结衣在线视频免费观看 | 青草视频在线免费 | 日本电影久久 | 免费网站看v片在线a | 在线免费亚洲 | 国产精品 日韩 欧美 | 亚洲高清在线 | 久久久精品国产免费观看一区二区 | av播放在线 | 免费网站看v片在线a | 国产三级视频 | 久久国产成人午夜av影院潦草 | 99久久www| 成人黄色一级视频 | 五月天天色 | 黄色影院在线观看 | 国产精品美女 | 欧美在线1区 | 中文字幕亚洲精品日韩 | 国产成人一二片 | 一区二区三区电影在线播 | 国产精品一区二区三区免费视频 | 免费能看的黄色片 | 精品99在线 | 91亚洲欧美激情 | 中文字幕国产亚洲 | av免费网站 | 特级西西www44高清大胆图片 | 狠狠干狠狠久久 | 69亚洲视频| 国产精品99久久久久久小说 | 亚洲国产精品电影 | 国产一级在线 | 婷婷精品在线视频 | 在线v片| 国产亚洲精品久久久久久 | 日本中文乱码卡一卡二新区 | av高清免费在线 | 热久久免费视频精品 | 成人午夜电影免费在线观看 | 亚洲精品777 | 最新午夜电影 | 日韩电影久久久 | 欧美日韩亚洲精品在线 | avav99| 日韩av男人的天堂 | a黄色片 | 免费亚洲成人 | 天天曰天天曰 | 国产98色在线 | 日韩 | 国产视频第二页 | www..com毛片| 九九九热精品免费视频观看 | 丁香午夜婷婷 | 一区二区精品视频 | 日本黄色免费看 | 精品在线观看视频 | 欧美一区二区精品在线 | 超级av在线 | 一区二区精品在线 | 久久视频国产精品免费视频在线 | 国产精品1024 | 日本一区二区三区免费看 | 亚洲国产精品500在线观看 | 午夜国产一区二区三区四区 | 国产精品日韩精品 | 成人黄视频 | 中文字幕中文中文字幕 | 国产一级黄色电影 | 国产激情免费 | 久久免费看 | av电影av在线 | 国产成人一区二区三区久久精品 | 久久久午夜精品理论片中文字幕 | 国产99一区视频免费 | 久草免费在线观看视频 | 四虎影视精品 | www.夜夜草 | 伊人婷婷色 | 日本精品小视频 | 96久久| 高清av免费看 | 国产第一页福利影院 | 国产在线2020 | 成人丁香花 | 精品超碰 | 免费看片网页 | 欧美做受高潮电影o | 91色一区二区三区 | 美女网站视频久久 | 久久综合婷婷国产二区高清 | 五月婷婷在线视频观看 | 97av精品| 97视频免费观看2区 亚洲视屏 | 欧美激情精品久久久久久 | 精品亚洲在线 | 国产精品久久久久久久久久新婚 | 久久综合毛片 | 国产日韩精品一区二区三区在线 | 国产高清中文字幕 | 日韩亚洲在线 | 国产护士av | 免费观看第二部31集 | 99精品乱码国产在线观看 | va视频在线 | 成年人免费在线观看网站 | 天天爱天天操天天射 | 亚洲精品白浆高清久久久久久 | 伊色综合久久之综合久久 | 97国产大学生情侣白嫩酒店 | 久综合网 | 99视频精品视频高清免费 | 欧美一级看片 | 五月婷婷操 | 在线观看理论 | 成 人 黄 色 免费播放 | 97av.com| 在线免费视频a | 亚洲精品久久久久www | 久草在线最新免费 | 欧美日韩精品影院 | 国产九九热视频 | 亚洲国产精品视频 | 精品99免费 | 狠狠色丁香久久婷婷综合_中 | 二区视频在线观看 | 久草在线免 | 国产精品av免费观看 | 麻豆视频国产在线观看 | 国产精品影音先锋 | 97夜夜澡人人爽人人免费 | 在线国产欧美 | 免费观看国产成人 | 日韩在线免费高清视频 | 久久69精品久久久久久久电影好 | 午夜av片| 午夜99| 欧美a级一区二区 | 色久五月 | 日韩av快播电影网 | 中文字幕在线视频一区二区三区 | 日韩精品视频免费看 | 精品国产一区二区三区免费 | 久久午夜影院 | 久久字幕精品一区 | 在线视频专区 | 免费a网址 | 久久人人爽av | 国产精品视频不卡 | 亚州精品国产 | 97精品国自产拍在线观看 | 久久艹在线| 久久av网 | 人人插人人看 | 夜夜狠狠| 久久成人国产精品 | 日韩理论在线视频 | 久久人人97超碰国产公开结果 | 日韩网 | 久章草在线 | 亚洲一级久久 | 偷拍精品一区二区三区 | 久久久久久久av | 91在线porny国产在线看 | 欧美性大胆 | 99久热| 亚洲精品久久久蜜桃 | 亚洲最大在线视频 | 欧美日韩高清一区二区三区 | 欧美日韩在线第一页 | 国产福利91精品 | 亚洲色图色 | 久久成人国产精品免费软件 | 日日碰夜夜爽 | 黄色av三级在线 | 美女视频一区 | 欧美日本一二三 | 中文字幕免费高清在线 | 欧美日韩一区二区三区视频 | 免费观看全黄做爰大片国产 | 中文字幕高清有码 | 亚洲激情在线观看 | 久久免费公开视频 | 免费一级片观看 | 国产成人久久精品77777综合 | 91亚洲精品久久久中文字幕 | 日韩在线免费视频观看 | 爱干视频 | 婷婷亚洲五月 | 女人18片毛片90分钟 | www.亚洲精品在线 | 久草精品免费 | 一区二区 精品 | 色噜噜噜噜 | 国产精品第十页 | 欧美超碰在线 | 欧美日韩一二三四区 | 亚洲免费在线播放视频 | 久久精品国产亚洲aⅴ | 欧美电影在线观看 | 在线免费av观看 | 国产成人精品午夜在线播放 | 人人艹人人 | 久久人人爽人人 | 亚洲人天堂 | 国产视频不卡一区 | 欧美日韩在线观看不卡 | 精品毛片一区二区免费看 | 久久久久观看 | 九九色在线 | 中文字幕在线观看三区 | 青青色影院 | 免费观看成人网 | 免费视频一区二区 | 成人免费大片黄在线播放 | 成年人视频在线免费观看 | 久久精品96 | 日韩,精品电影 | 久久久久久久久久网 | 久久久久久久综合色一本 | 午夜精品一区二区三区视频免费看 | 97热在线观看 | 国产精品夜夜夜一区二区三区尤 | 国产成人三级在线 | 91免费的视频在线播放 | 久热av | 久久久久北条麻妃免费看 | 中文字幕亚洲高清 | 免费黄色a网站 | av资源在线观看 | 国产毛片aaa| 成人黄色毛片视频 | 久久九九免费视频 | 国产精品一区一区三区 | 国产一二区精品 | 国产精品免费在线视频 | 久久日韩精品 | 亚洲精品视频在 | 成人av电影免费在线观看 | 人人爽人人搞 | 日本婷婷色 | 国产专区免费 | 日韩在线电影观看 | 奇米影视在线99精品 | 91av资源网| 国产精品久久久久三级 | 在线观看中文字幕网站 | 久久久亚洲影院 | 日日夜夜免费精品 | 亚洲1区在线 | 久久久久久久久久久久久影院 | 国产精品视频免费 | 激情五月综合网 | 欧美日韩另类在线 | 欧美激情综合网 | 亚洲精品18日本一区app | 最新国产精品视频 | 亚洲成人午夜在线 | 日日操网站 | 成年人免费电影在线观看 | 精品亚洲男同gayvideo网站 | 亚洲视频aaa | 久久综合九色综合久久久精品综合 | 国产高清视频免费在线观看 | 97电影院在线观看 | 99精品免费久久久久久久久日本 | 蜜臀久久99精品久久久久久网站 | 久久av高清| 综合久久久久 | 在线观看av小说 | 波多野结衣在线视频一区 | 中文字幕你懂的 | 午夜美女wwww | 国产婷婷在线观看 | 国产亚洲精品电影 | 四虎在线观看 | 国产黄在线播放 | 欧美韩国在线 | 成人av影院在线观看 | 韩国av电影在线观看 | 欧美久久久久久久久久久 | 五月激情av | 免费精品久久久 | 免费日韩一区二区三区 | 精品国产_亚洲人成在线 | 天天插天天狠 | 国产中文字幕第一页 | 97超碰免费 | 国产黄色在线观看 | 99在线精品观看 | 亚洲三区在线 | 日韩免费在线网站 | 一区二区视频播放 | 久在线观看视频 | 夜夜干天天操 | 中文字幕免费播放 | 久久久午夜精品理论片中文字幕 | 亚洲狠狠婷婷综合久久久 | 成人a视频在线观看 | 久久国产网站 | 日韩一区二区免费视频 | 日本中文字幕视频 | 国产黄a三级三级 | 国产精品女同一区二区三区久久夜 | 青青河边草免费 | 国产精品网站 | 最近免费观看的电影完整版 | 99久久日韩精品视频免费在线观看 | 黄色成人av网址 | 国产精品成人久久久久 | 二区三区毛片 | 免费在线观看午夜视频 | 成人理论在线观看 | 久久久久久久久久免费视频 | 久久精品国产一区二区三区 | 麻豆免费在线视频 | 中文字幕在线播放av | 五月激情在线 | 精品一区二区在线免费观看 | va视频在线观看 | 国产精品成人一区 | 久草影视在线 | 亚洲精品视频免费观看 | 成人在线播放免费观看 | av动图 | 91完整版| 天天看天天操 | 天天干天天操天天做 | 久久久久久久久久久免费视频 | 激情视频综合网 | 欧美色综合久久 | 成人久久精品视频 | 爱情影院aqdy鲁丝片二区 | 免费看片网页 | 成人av在线直播 | 日韩精品一区在线观看 | 成人av影视观看 | 91免费黄视频 | 国产精久久久久久妇女av | 日韩大片在线 | 狠狠躁夜夜躁人人爽超碰97香蕉 | 日日日日干 | 久热电影 | 久久综合一本 | 六月丁香六月婷婷 | 一区二区网 | 99热手机在线| 91在线免费观看国产 | 久久99影院 | 精品福利网| 操操操av | 国产xxxx做受性欧美88 | 日本三级全黄少妇三2023 | 91在线亚洲 | 日韩精品一区二区免费 | 欧美91精品久久久久国产性生爱 | 播五月综合 | 丁香综合| 国产精品永久免费观看 | 欧美日韩二区三区 | 欧美日韩视频在线 | 久久草草影视免费网 | 96视频在线| 成人国产精品免费 | 久久人91精品久久久久久不卡 | 中文字幕在线视频网站 | 国产一区二区三区在线免费观看 | 日韩精品一区二区在线视频 | 中文字幕免费观看 | 国产一区二区视频在线播放 | 激情综合色播五月 | 中文字幕 国产精品 | 国产精品美女999 | 色婷婷激婷婷情综天天 | 中文字幕一区二区三区在线播放 | 麻豆系列在线观看 | 精品免费一区 | 黄色小说免费在线观看 | 超碰97人人在线 | 国产色爽 | 日色在线视频 | 91人人爽久久涩噜噜噜 | 91免费在线视频 | 国产玖玖精品视频 | 久久电影日韩 | 深夜成人av | 久久久久亚洲精品男人的天堂 | 日韩精品一卡 | 国产96精品 | 又黄又爽又无遮挡的视频 | 精品一区二区在线看 | 不卡精品视频 | 免费亚洲电影 | 中文字幕在线观看1 | 麻豆视频国产精品 | 香蕉97视频观看在线观看 | 色婷婷激情 | 日韩欧美视频免费在线观看 | 狠狠色噜噜狠狠 | 天天爽人人爽夜夜爽 | 日韩欧美视频在线 | 91丨精品丨蝌蚪丨白丝jk | 成人a在线观看高清电影 | 亚洲另类交 | 国内精品久久久久 | aav在线 | 91理论片午午伦夜理片久久 | 日日草天天草 | 国产专区在线看 | 久久久精品 一区二区三区 国产99视频在线观看 | 最新日韩精品 | 国产日韩欧美在线免费观看 | 日日夜夜精品免费视频 | 91精品国产自产91精品 | 色婷婷久久一区二区 | 国产精品免费在线 | 久久99热国产 | www夜夜操com | 日韩欧美极品 | 国内视频在线观看 | www.五月天激情 | 国产99久久九九精品 | 一级黄色片在线播放 | 伊人天天色 | 毛片随便看 | 亚洲欧美成aⅴ人在线观看 四虎在线观看 | 国产91精品欧美 | 粉嫩一区二区三区粉嫩91 | 91污污视频在线观看 | 久久免费公开视频 | 狂野欧美激情性xxxx欧美 | 中文字幕 成人 | 午夜av一区二区三区 | 亚洲三级网 | 欧美日韩在线观看一区二区三区 | 欧美性爽爽 | 在线免费黄色av | 日批视频在线 | 免费av在| 久久国产亚洲视频 | 国产一级一片免费播放放a 一区二区三区国产欧美 | 激情综合五月婷婷 | 国产美女精品 | 黄色特级毛片 | 超碰在线人人 | 青青色影院 | 成人精品一区二区三区电影免费 | 国产午夜在线 | 亚洲蜜桃在线 | 国产护士hd高朝护士1 | 国产黑丝一区二区三区 | 91九色国产| 日韩在线网址 | 午夜美女视频 | 日韩高清dvd | 亚洲欧美久久 | 91精品国产一区 | 国内一级片在线观看 | www.99久久.com| 中文字幕av最新 | 六月丁香综合网 | 91久久国产露脸精品国产闺蜜 | 97日日| wwwwww黄 | 免费色视频在线 | 欧美精品少妇xxxxx喷水 | 二区在线播放 | 国产精品毛片一区视频播不卡 | 日韩精品久久久久久 | 人人插人人插 | 蜜臀av性久久久久蜜臀aⅴ流畅 | 中文字幕在线免费看 | 久久曰视频 | 亚洲精品一区二区久 | 免费看黄色小说的网站 | 99国产一区二区三精品乱码 | 91免费网 | 国内精品久久久久久中文字幕 | 精品久久一 | 久久少妇免费视频 | 亚洲国产美女精品久久久久∴ | 中文字幕黄色网 | 精品天堂av | 国产精品国内免费一区二区三区 | 久久国产精品免费观看 | 伊人成人精品 | 毛片网在线播放 | 亚洲在线视频免费 | 天堂视频中文在线 | 在线免费黄色毛片 | 四虎在线观看精品视频 | 欧美日韩免费观看一区=区三区 | 国产高清在线免费观看 | 在线国产一区二区三区 | 国产精品久久久久久久电影 | 成年人在线播放视频 | 日韩精品久久久久久久电影99爱 | 免费欧美 | 日韩黄色大片在线观看 | 国产永久网站 | 特黄特黄的视频 | 丁香激情五月婷婷 | av3级在线| 97超碰超碰| 精品久久久久久久久久久院品网 | 久久久久亚洲精品国产 | 国产馆在线播放 | 狠狠色伊人亚洲综合网站色 | 久久综合成人 | 99re国产视频 | 国产又粗又猛又色又黄视频 | 欧美色一色 | 狠狠地操 | 三级黄色在线 | 午夜精品久久久久久久99热影院 | 婷婷在线免费视频 | 激情视频91 | 色诱亚洲精品久久久久久 | 一区中文字幕电影 | 免费日韩一区 | 免费进去里的视频 | 成人av免费在线看 | 国产亚洲精品久久久久5区 成人h电影在线观看 | 欧美一级艳片视频免费观看 | 99欧美视频 | 久久国产成人午夜av影院潦草 | 色婷婷综合久久久中文字幕 | 亚洲码国产日韩欧美高潮在线播放 | 日本中文字幕免费观看 | 超碰97免费 | 五月婷婷久草 | 人人爽久久涩噜噜噜网站 | 欧美精品久久久久久久久久丰满 | 亚洲精品一区二区三区新线路 | av免费在线免费观看 | 亚洲黄色激情小说 | 日日麻批40分钟视频免费观看 | 免费看一级黄色 | 国产成在线观看免费视频 | 日韩在线观看的 | 国产在线中文字幕 | 91久久丝袜国产露脸动漫 | 青青河边草免费观看完整版高清 | 国产精品24小时在线观看 | 少妇自拍av | 日韩午夜在线播放 | 婷婷丁香在线观看 | 欧美午夜剧场 | 97精品国产 | 中文字幕在线看视频 | 国产精品久久久久久久久大全 | 西西444www大胆高清图片 | 日韩xxxbbb | 99欧美视频 | 成人在线黄色 | 激情网站网址 | 久久99久久精品 | 欧美精品网站 | 国产不卡一 | 天天插天天狠 | 久久成人免费 | 日韩 国产 | 久久超级碰 | 日躁夜躁狠狠躁2001 | 欧美在线视频二区 | 亚洲永久字幕 | 99国产在线视频 | 中文字幕一区二区三区在线视频 | 四虎永久精品在线 | 国产精品尤物视频 | 国产精品自产拍在线观看中文 | 中文字幕在线播放一区二区 | 久久久久草| 日韩一区二区三区免费电影 | 亚洲成a人片在线观看网站口工 | 国产福利91精品一区 | 亚洲jizzjizz日本少妇 | 麻豆传媒在线视频 | 99爱视频在线观看 | 欧美日韩国产精品一区二区 | 国产一级片久久 | 在线观看视频亚洲 | 丁香资源影视免费观看 | 在线观看视频福利 | 91精品成人 | 永久免费的啪啪网站免费观看浪潮 | 国产日韩一区在线 | 综合激情网... | av电影在线不卡 | a级片网站| 久久久高清一区二区三区 | 亚洲精品黄色在线观看 | 久草久热 | av不卡网站 | 日韩欧美在线观看一区二区 | 欧美精品久 | 精品国产自在精品国产精野外直播 | 四虎在线免费 | 有没有在线观看av | 免费在线观看av不卡 | 国产一区二区在线免费观看 | 成片免费观看视频 | 久久电影日韩 | 欧美人交a欧美精品 | 国产精品久久久久久欧美 | 欧美a级成人淫片免费看 | 97视频在线观看成人 | 欧美成人一二区 | av免费观看网站 | 日韩精品久久久久久中文字幕8 | 日韩欧美99| 亚洲 欧美 成人 | 国产精品99蜜臀久久不卡二区 | 超碰国产在线观看 | 欧美性猛片, | 日韩成人免费在线电影 | 国产精品久久久久亚洲影视 | 久久国产一区二区 | 天天做天天爱天天爽综合网 | 在线网址你懂得 | 韩国av免费观看 | 在线电影91| 欧美a视频在线观看 | 视频在线观看入口黄最新永久免费国产 | 成人免费观看网站 | 成年人毛片在线观看 | 亚洲午夜久久久综合37日本 | 免费观看一级特黄欧美大片 | 久久久婷 | 干天天 | av亚洲产国偷v产偷v自拍小说 | 久久久久亚洲精品男人的天堂 | 中文字幕久久精品 | 精品免费视频 | 91在线视频精品 | 国产成人三级三级三级97 | 人人玩人人添人人澡97 | 91尤物国产尤物福利在线播放 | 欧美91精品国产自产 | 五月花激情| 精品国产午夜 | 天天综合网天天综合色 | 国产精品黄色影片导航在线观看 | 国产精品成久久久久三级 | 一级特黄aaa大片在线观看 | 中文字幕丝袜美腿 | 中文字幕在线网 | 99视频在线观看一区三区 | 亚洲电影久久久 | 免费在线黄色av | 国产不卡在线 | 美女搞黄国产视频网站 | 一区二区激情视频 | av成人免费在线看 | 欧美二区三区91 | 精品综合久久久 | 国产小视频在线 | 在线免费观看欧美日韩 | 久久伦理视频 | 国产伦理一区二区 | 久草精品国产 | 五月激情姐姐 | 亚洲国产中文字幕在线观看 | 99久久99热这里只有精品 | 99热.com| 精品国产伦一区二区三区观看体验 | 亚洲黄网站 | 日韩欧美一区二区在线播放 | 国产美女视频免费观看的网站 | 国产极品尤物在线 | 丁香激情综合久久伊人久久 | 黄色www免费 | 黄色一级在线免费观看 | 成人毛片在线观看视频 |