日本不卡不码高清免费观看,久久国产精品久久w女人spa,黄色aa久久,三上悠亚国产精品一区二区三区

您的位置:首頁(yè)技術(shù)文章
文章詳情頁(yè)

Android Handler消息機(jī)制分析

瀏覽:77日期:2023-12-11 10:34:33
目錄Handler是什么?Handler 的基本使用用法一:通過(guò) send 方法用法二:通過(guò) post 方法Handler 類MessageQueue 類Looper 類Handler 的消息接收過(guò)程Handler是什么?

Handler 是一個(gè)可以實(shí)現(xiàn)多線程間切換的類,通過(guò) Handler 可以輕松地將一個(gè)任務(wù)切換到 Handler 所在的線程中去執(zhí)行。我們最常用的使用的場(chǎng)景就是更新 UI 了,比如我們?cè)谧泳€程中訪問(wèn)網(wǎng)絡(luò),拿到數(shù)據(jù)后我們 UI 要做一些改變,如果此時(shí)我們直接訪問(wèn) UI 控件,就會(huì)觸發(fā)異常了。這個(gè)時(shí)候我們往往會(huì)通過(guò) Handler 將更新 UI 的操作切換到主線程中。

Handler 的基本使用用法一:通過(guò) send 方法

public class MainActivity extends AppCompatActivity { private static final String TAG = 'MainActivity'; private MyHandler mMyHandler = new MyHandler(); @Override protected void onCreate(Bundle savedInstanceState) {super.onCreate(savedInstanceState);setContentView(R.layout.activity_main);new Thread(new Runnable() { @Override public void run() {Message message = Message.obtain(mMyHandler,0,'通過(guò) send 方法');mMyHandler.sendMessage(message); }}).start(); } private static class MyHandler extends Handler{@Overridepublic void handleMessage(Message msg) { switch (msg.what){case 0: Toast.makeText(MainActivity.this,msg.obj.toString(),Toast.LENGTH_SHORT).show(); break; }} }}用法二:通過(guò) post 方法

public class MainActivity extends AppCompatActivity { private static final String TAG = 'MainActivity'; private Handler mMyHandler = new Handler(); @Override protected void onCreate(Bundle savedInstanceState) {super.onCreate(savedInstanceState);setContentView(R.layout.activity_main);new Thread(new Runnable() { @Override public void run() {mMyHandler.post(new Runnable() { @Override public void run() {Toast.makeText(MainActivity.this,'通過(guò)post方法',Toast.LENGTH_SHORT).show(); }}); }}).start(); }}

其實(shí),通過(guò) post 方法最后通過(guò) send 方法來(lái)完成的。這個(gè)我們稍后會(huì)分析。講到 Handler,我們不得不提起 MessageQueue 類 和 Looper 類。 Handler 通過(guò) send 方法 發(fā)送一個(gè)消息,會(huì)調(diào)用 MessageQueue 的 enqueueMessage 方法 將這個(gè)消息插入到 MessageQueue 中,然后 Looper 發(fā)現(xiàn)有消息來(lái)臨時(shí),通過(guò)一系列的方法調(diào)用后,Handler 如果是通過(guò) post 方法就會(huì)執(zhí)行 post 方法里面的 Runnable ,如果是通過(guò) send 方法就會(huì)執(zhí)行 Handler 的 handleMessage 。這么說(shuō)感覺有點(diǎn)云里霧里的,讓我們仔細(xì)的來(lái)看下 Handler 類、MessageQueue 類和 Looper 類。

Handler 類

我們先來(lái)看下 Handler 類的結(jié)構(gòu)

Android Handler消息機(jī)制分析Handler 類結(jié)構(gòu).png

Handler 的工作主要包括消息的發(fā)送和接收過(guò)程。一般來(lái)說(shuō),消息的發(fā)送和消息的接收是位于不同的線程。我們首先來(lái)看 post 方法。

/** * Causes the Runnable r to be added to the message queue. * The runnable will be run on the thread to which this handler is * attached. * * @param r The Runnable that will be executed. * * @return Returns true if the Runnable was successfully placed in to the * message queue. Returns false on failure, usually because the * looper processing the message queue is exiting. */public final boolean post(Runnable r){ return sendMessageDelayed(getPostMessage(r), 0);}

這里調(diào)用了 sendMessageDelayed 方法

/** * Enqueue a message into the message queue after all pending messages * before (current time + delayMillis). You will receive it in * {@link #handleMessage}, in the thread attached to this handler. * * @return Returns true if the message was successfully placed in to the * message queue. Returns false on failure, usually because the * looper processing the message queue is exiting. Note that a * result of true does not mean the message will be processed -- if * the looper is quit before the delivery time of the message * occurs then the message will be dropped. */public final boolean sendMessageDelayed(Message msg, long delayMillis){ if (delayMillis < 0) {delayMillis = 0; } return sendMessageAtTime(msg, SystemClock.uptimeMillis() + delayMillis);}

而 sendMessageDelayed 又調(diào)用了 sendMessageAtTime() 方法

/** * Enqueue a message into the message queue after all pending messages * before the absolute time (in milliseconds) <var>uptimeMillis</var>. * <b>The time-base is {@link android.os.SystemClock#uptimeMillis}.</b> * Time spent in deep sleep will add an additional delay to execution. * You will receive it in {@link #handleMessage}, in the thread attached * to this handler. * * @param uptimeMillis The absolute time at which the message should be * delivered, using the * {@link android.os.SystemClock#uptimeMillis} time-base. * * @return Returns true if the message was successfully placed in to the * message queue. Returns false on failure, usually because the * looper processing the message queue is exiting. Note that a * result of true does not mean the message will be processed -- if * the looper is quit before the delivery time of the message * occurs then the message will be dropped. */public boolean sendMessageAtTime(Message msg, long uptimeMillis) { MessageQueue queue = mQueue; if (queue == null) {RuntimeException e = new RuntimeException(this + ' sendMessageAtTime() called with no mQueue');Log.w('Looper', e.getMessage(), e);return false; } return enqueueMessage(queue, msg, uptimeMillis);}

千呼萬(wàn)喚始出來(lái),在 sendMessageAtTime 這個(gè)方法我們終于看到了 MessageQueue 類,這里的邏輯主要向 MessageQueue 中插入了一條消息(Message)。咦?我們不是通過(guò) post 方法傳進(jìn)來(lái)的 Runnable 么?什么時(shí)候變成 Message 了?其實(shí)剛才我們忽略了一個(gè)方法。

public final boolean post(Runnable r){ return sendMessageDelayed(getPostMessage(r), 0);}

沒錯(cuò),就是 getPostMessage 方法

private static Message getPostMessage(Runnable r) { Message m = Message.obtain(); m.callback = r; return m;}

從這里看到,系統(tǒng)通過(guò)調(diào)用 Message.obtain() 創(chuàng)建一個(gè) Message,并把我們通過(guò) post 方法傳進(jìn)來(lái)的 Runnable 賦值給 Message 的 callback。這里的 callback 需要留意,這個(gè)在我們之后的分析會(huì)用到。接下里我們看 Handler 的 send 方法。

/** * Pushes a message onto the end of the message queue after all pending messages * before the current time. It will be received in {@link #handleMessage}, * in the thread attached to this handler. * * @return Returns true if the message was successfully placed in to the * message queue. Returns false on failure, usually because the * looper processing the message queue is exiting. */public final boolean sendMessage(Message msg){ return sendMessageDelayed(msg, 0);}

是不是很熟悉?post 方法也是調(diào)用這個(gè) sendMessageDelayed 方法,這也是為什么我們之前說(shuō) post 方法 也是通過(guò) send 方法來(lái)執(zhí)行的。到此為止,我們已經(jīng)弄懂 Handler 的消息發(fā)送過(guò)程??偨Y(jié)的來(lái)說(shuō),通過(guò) post 方法系統(tǒng)會(huì)把 我們傳進(jìn)來(lái)的 Runnable 轉(zhuǎn)變成 Message,然后就和 send 方法一樣,通過(guò)一系列的方法調(diào)用之后把 Message 插入到 MessageQueue 當(dāng)中。至于 Handler 的消息接收過(guò)程,我們暫且放一下,先來(lái)看 MessageQueue 類。

MessageQueue 類

前面說(shuō)到,Handler 發(fā)送消息的過(guò)程就是往 MessageQueue 中插入 一個(gè) Message,即調(diào)用 MessageQueue 的 enqueueMessage 方法。首先,我們來(lái)看下 MessageQueue 的類結(jié)構(gòu)

Android Handler消息機(jī)制分析MessageQueue類結(jié)構(gòu).png

我們看到 MessageQueue 是比較簡(jiǎn)單的。其實(shí),MessageQueue 主要包含兩個(gè)操作:插入和讀取。

插入方法:enqueueMessage

boolean enqueueMessage(Message msg, long when) { if (msg.target == null) {throw new IllegalArgumentException('Message must have a target.'); } if (msg.isInUse()) {throw new IllegalStateException(msg + ' This message is already in use.'); } synchronized (this) {if (mQuitting) { IllegalStateException e = new IllegalStateException( msg.target + ' sending message to a Handler on a dead thread'); Log.w('MessageQueue', e.getMessage(), e); msg.recycle(); return false;}msg.markInUse();msg.when = when;Message p = mMessages;boolean needWake;if (p == null || when == 0 || when < p.when) { // New head, wake up the event queue if blocked. msg.next = p; mMessages = msg; needWake = mBlocked;} else { // Inserted within the middle of the queue. Usually we don’t have to wake // up the event queue unless there is a barrier at the head of the queue // and the message is the earliest asynchronous message in the queue. needWake = mBlocked && p.target == null && msg.isAsynchronous(); Message prev; for (;;) {prev = p;p = p.next;if (p == null || when < p.when) { break;}if (needWake && p.isAsynchronous()) { needWake = false;} } msg.next = p; // invariant: p == prev.next prev.next = msg;}// We can assume mPtr != 0 because mQuitting is false.if (needWake) { nativeWake(mPtr);} } return true;}

讀取方法:next

需要注意的是:讀取操作本身會(huì)伴隨著刪除操作

Message next() { // Return here if the message loop has already quit and been disposed. // This can happen if the application tries to restart a looper after quit // which is not supported. final long ptr = mPtr; if (ptr == 0) {return null; } int pendingIdleHandlerCount = -1; // -1 only during first iteration int nextPollTimeoutMillis = 0; for (;;) {if (nextPollTimeoutMillis != 0) { Binder.flushPendingCommands();}nativePollOnce(ptr, nextPollTimeoutMillis);synchronized (this) { // Try to retrieve the next message. Return if found. final long now = SystemClock.uptimeMillis(); Message prevMsg = null; Message msg = mMessages; if (msg != null && msg.target == null) {// Stalled by a barrier. Find the next asynchronous message in the queue.do { prevMsg = msg; msg = msg.next;} while (msg != null && !msg.isAsynchronous()); } if (msg != null) {if (now < msg.when) { // Next message is not ready. Set a timeout to wake up when it is ready. nextPollTimeoutMillis = (int) Math.min(msg.when - now, Integer.MAX_VALUE);} else { // Got a message. mBlocked = false; if (prevMsg != null) {prevMsg.next = msg.next; } else {mMessages = msg.next; } msg.next = null; if (false) Log.v('MessageQueue', 'Returning message: ' + msg); return msg;} } else {// No more messages.nextPollTimeoutMillis = -1; } // Process the quit message now that all pending messages have been handled. if (mQuitting) {dispose();return null; } // If first time idle, then get the number of idlers to run. // Idle handles only run if the queue is empty or if the first message // in the queue (possibly a barrier) is due to be handled in the future. if (pendingIdleHandlerCount < 0 && (mMessages == null || now < mMessages.when)) {pendingIdleHandlerCount = mIdleHandlers.size(); } if (pendingIdleHandlerCount <= 0) {// No idle handlers to run. Loop and wait some more.mBlocked = true;continue; } if (mPendingIdleHandlers == null) {mPendingIdleHandlers = new IdleHandler[Math.max(pendingIdleHandlerCount, 4)]; } mPendingIdleHandlers = mIdleHandlers.toArray(mPendingIdleHandlers);}// Run the idle handlers.// We only ever reach this code block during the first iteration.for (int i = 0; i < pendingIdleHandlerCount; i++) { final IdleHandler idler = mPendingIdleHandlers[i]; mPendingIdleHandlers[i] = null; // release the reference to the handler boolean keep = false; try {keep = idler.queueIdle(); } catch (Throwable t) {Log.wtf('MessageQueue', 'IdleHandler threw exception', t); } if (!keep) {synchronized (this) { mIdleHandlers.remove(idler);} }}// Reset the idle handler count to 0 so we do not run them again.pendingIdleHandlerCount = 0;// While calling an idle handler, a new message could have been delivered// so go back and look again for a pending message without waiting.nextPollTimeoutMillis = 0; }}Looper 類

首先,我們也來(lái)看下 Looper 的類結(jié)構(gòu)

Android Handler消息機(jī)制分析Looper類結(jié)構(gòu).png

關(guān)于 Looper ,我們首先要明確一點(diǎn),Looper 是線程相關(guān)的,即每個(gè)線程的 Looper 是不一樣的,但是線程默認(rèn)是沒有 Looper 的??赡軙?huì)有點(diǎn)繞,要理清這里面的邏輯的關(guān)系,我們首先要了解 ThreadLocal,關(guān)于 ThreadLocal 網(wǎng)上的資料挺多的。簡(jiǎn)單地來(lái)說(shuō),ThreadLocal 是一個(gè)線程內(nèi)部的數(shù)據(jù)存儲(chǔ)類,比如有有一個(gè) int 類型的 x,在線程 A 的值是 1,在線程 B 的值可以是 0,1,2,..,在線程 C 的值可以是 0,1,2... 我們來(lái)看下 Looper 相關(guān)的源碼

// sThreadLocal.get() will return null unless you’ve called prepare().static final ThreadLocal<Looper> sThreadLocal = new ThreadLocal<Looper>();private static void prepare(boolean quitAllowed) { if (sThreadLocal.get() != null) {throw new RuntimeException('Only one Looper may be created per thread'); } sThreadLocal.set(new Looper(quitAllowed));}/** * Return the Looper object associated with the current thread. Returns * null if the calling thread is not associated with a Looper. */public static Looper myLooper() { return sThreadLocal.get();}

我們?yōu)槭裁匆鞔_ Looper 是線程相關(guān)的呢?因?yàn)?Handler 創(chuàng)建的時(shí)候會(huì)采用當(dāng)前線程的 Looper 來(lái)構(gòu)造消息循環(huán)系統(tǒng)的。Handler 創(chuàng)建的時(shí)候要先創(chuàng)建 Looper,這時(shí)候疑問(wèn)就來(lái)了?我們平常創(chuàng)建 Handler 的時(shí)候直接就創(chuàng)建了啊,沒有創(chuàng)建什么 Looper 啊。這是因?yàn)槲覀兺ǔJ窃谥骶€程 ActivityThread 中創(chuàng)建 Handler。我們看到 Loop 類中有個(gè) prepareMainLooper 方法。

/** * Initialize the current thread as a looper, marking it as an * application’s main looper. The main looper for your application * is created by the Android environment, so you should never need * to call this function yourself. See also: {@link #prepare()} */public static void prepareMainLooper() { prepare(false); synchronized (Looper.class) {if (sMainLooper != null) { throw new IllegalStateException('The main Looper has already been prepared.');}sMainLooper = myLooper(); }}

主線程在創(chuàng)建時(shí),就會(huì)調(diào)用這個(gè)方法創(chuàng)建 Looper。但是如果我們?cè)谧泳€程(如下代碼)直接創(chuàng)建 Handler 就會(huì)拋出異常

new Thread(new Runnable() { @Override public void run() {//Looper.prepare();Handler handler = new Handler(); // Looper.loop(); }}).start();

這時(shí)只要我們把注釋去掉就不會(huì)報(bào)異常了。通過(guò)源碼我們知道 Looper.prepare() 主要是為當(dāng)前線程一個(gè) Looper 對(duì)象。

/** Initialize the current thread as a looper. * This gives you a chance to create handlers that then reference * this looper, before actually starting the loop. Be sure to call * {@link #loop()} after calling this method, and end it by calling * {@link #quit()}. */public static void prepare() { prepare(true);}private static void prepare(boolean quitAllowed) { if (sThreadLocal.get() != null) {throw new RuntimeException('Only one Looper may be created per thread'); } sThreadLocal.set(new Looper(quitAllowed));}

那么,Looper.loop()方法是干什么的呢?其實(shí),Looper 最重要的一個(gè)方法就是 loop 方法了。只有調(diào)用 loop 后,消息系統(tǒng)才會(huì)真正地起作用。我們來(lái)看 loop 方法

/** * Run the message queue in this thread. Be sure to call * {@link #quit()} to end the loop. */public static void loop() { final Looper me = myLooper(); if (me == null) {throw new RuntimeException('No Looper; Looper.prepare() wasn’t called on this thread.'); } final MessageQueue queue = me.mQueue; // Make sure the identity of this thread is that of the local process, // and keep track of what that identity token actually is. Binder.clearCallingIdentity(); final long ident = Binder.clearCallingIdentity(); for (;;) {Message msg = queue.next(); // might blockif (msg == null) { // No message indicates that the message queue is quitting. return;}// This must be in a local variable, in case a UI event sets the loggerPrinter logging = me.mLogging;if (logging != null) { logging.println('>>>>> Dispatching to ' + msg.target + ' ' + msg.callback + ': ' + msg.what);}msg.target.dispatchMessage(msg);if (logging != null) { logging.println('<<<<< Finished to ' + msg.target + ' ' + msg.callback);}// Make sure that during the course of dispatching the// identity of the thread wasn’t corrupted.final long newIdent = Binder.clearCallingIdentity();if (ident != newIdent) { Log.wtf(TAG, 'Thread identity changed from 0x' + Long.toHexString(ident) + ' to 0x' + Long.toHexString(newIdent) + ' while dispatching to ' + msg.target.getClass().getName() + ' ' + msg.callback + ' what=' + msg.what);}msg.recycleUnchecked(); }}

我們可以看到 loop 方法是一個(gè)死循環(huán),在這個(gè)死循環(huán)方法里面會(huì)調(diào)用 MessageQueue 的 next 方法來(lái)獲取新消息。但是如果 next 方法返回了 null,loop 就退出循環(huán)。這種情況發(fā)生在 Loop 的 quit 方法被調(diào)用時(shí),Looper 會(huì) 調(diào)用 MessageQueue 的 quit 方法來(lái)通知消息隊(duì)列退出,當(dāng)消息隊(duì)列被標(biāo)記退出狀態(tài)時(shí),它的 next 方法就會(huì)返回 null。由于 next 是一個(gè)阻塞方法,所以 loop 也會(huì)一直阻塞在那里,如果有消息到來(lái), msg.target.dispatchMessage(msg)。這個(gè) msg.target 就是發(fā)送這個(gè)消息的 Handler 對(duì)象啦。這樣 Handler 發(fā)送的消息最終又交給自己的 dispatchMessage 方法來(lái)處理了。因?yàn)?Handler 的 dispatchMessage 方法是創(chuàng)建 Handler 時(shí)使用的 Looper 中執(zhí)行的,這樣就成功地完成線程切換了。

Handler 的消息接收過(guò)程

經(jīng)過(guò)跋山涉水,通過(guò) Handler 發(fā)送的消息最終又會(huì)回到自己的 diapatchMessage 中來(lái),那就讓我們來(lái)看下 diapatchMessage 方法。

/** * Handle system messages here. */public void dispatchMessage(Message msg) { if (msg.callback != null) {handleCallback(msg); } else {if (mCallback != null) { if (mCallback.handleMessage(msg)) {return; }}handleMessage(msg); }}

首先,檢查 Messgae 的 callback 是否為 null,不為 null 就調(diào)用 handleCallback 方法,這個(gè) Message 的 callback 就是我們之前post的。其次,檢查 mCallback 是否為 null ,不為 null 就調(diào)用 mCallback 的 handleMessage 方法來(lái)處理消息。如果我們是通過(guò)繼承 Handler 來(lái)實(shí)現(xiàn)邏輯的話,此時(shí)的mCallback 是為空的,即會(huì)調(diào)用 handleMessage(msg),也就是我們重寫的 handleMessage 方法。至此,完成了完美的閉環(huán)。

有的同學(xué)可能會(huì)疑問(wèn) mCallback 是什么?什么時(shí)候會(huì)為空?

/** * Callback interface you can use when instantiating a Handler to avoid * having to implement your own subclass of Handler. * * @param msg A {@link android.os.Message Message} object * @return True if no further handling is desired */public interface Callback { public boolean handleMessage(Message msg);} /** * Constructor associates this handler with the {@link Looper} for the * current thread and takes a callback interface in which you can handle * messages. * * If this thread does not have a looper, this handler won’t be able to receive messages * so an exception is thrown. * * @param callback The callback interface in which to handle messages, or null. */public Handler(Callback callback) { this(callback, false);}

通過(guò)源碼可以看出,我們也可以采用 Handler handler = new Handler(callback) 來(lái)創(chuàng)建 Handler,這時(shí)dispatchMessage 里面就會(huì)走 mCallback 不為空的邏輯。

到此這篇關(guān)于Android Handler消息機(jī)制分析的文章就介紹到這了,更多相關(guān)Android Handler消息機(jī)制內(nèi)容請(qǐng)搜索好吧啦網(wǎng)以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持好吧啦網(wǎng)!

標(biāo)簽: Android
相關(guān)文章:
日本不卡不码高清免费观看,久久国产精品久久w女人spa,黄色aa久久,三上悠亚国产精品一区二区三区
青草国产精品| 久久国产毛片| 亚洲精品极品| 蜜臀av在线播放一区二区三区| 欧美视频一区| 国产精品亚洲综合色区韩国 | 欧美影院三区| 日韩av免费| 亚洲一级高清| 久久99国产精品视频| 精品国产欧美| 国产精品成久久久久| 美腿丝袜亚洲一区| 老司机精品视频网| 亚洲最新无码中文字幕久久| 韩国三级一区| 91精品99| 亚洲精品欧洲| 欧美久久一区二区三区| 麻豆成人91精品二区三区| 国内精品亚洲| 亚洲v在线看| 99xxxx成人网| 日本特黄久久久高潮| 麻豆国产精品视频| 欧美三级网址| 亚洲欧美日韩一区在线观看| 在线看片一区| 久久精品凹凸全集| 四虎8848精品成人免费网站| 国产91一区| 日韩视频精品在线观看| 成人日韩在线观看| 亚洲欧美不卡| 国产精品中文字幕亚洲欧美| 97精品国产| 丝袜a∨在线一区二区三区不卡| 日韩精品导航| 国产伊人久久| 在线日韩中文| 日韩黄色在线观看| 国产精品66| av资源亚洲| 亚洲欧美视频| 久久影院资源站| 亚洲高清影视| 久久精品97| 国产在线|日韩| 久久午夜精品一区二区| 国产精品2区| 欧美精选一区二区三区| 日韩成人一级| 日韩一区二区三区在线免费观看| 蜜臀久久久99精品久久久久久| 国产精品免费不| 久久久人人人| 91精品尤物| 国内精品亚洲| 日韩制服丝袜先锋影音| 精品亚洲自拍| 日韩精品一区第一页| 久久伊人亚洲| 99日韩精品| 精品精品99| 老司机久久99久久精品播放免费| 精品日产乱码久久久久久仙踪林| 午夜精品网站| 精品一区视频| 亚洲精品免费观看| 日韩三区在线| 欧美欧美黄在线二区| 国产精品av一区二区| 婷婷综合亚洲| 久久精品毛片| 亚洲精品国产精品粉嫩| 成人精品中文字幕| 国产亚洲高清在线观看| 欧美亚洲精品在线| 麻豆91小视频| 亚洲3区在线| 国产高清一区| 欧美激情国产在线| 国产精品丝袜在线播放| 蜜桃一区二区三区在线观看| 一本大道色婷婷在线| 国产精品一卡| 深夜福利一区| 亚洲国产专区校园欧美| 久久精品一区二区国产| 日韩黄色免费网站| 亚洲欧美高清| 久久视频国产| 中文在线免费视频| 老司机精品视频在线播放| 欧美一级全黄| 中文字幕日韩高清在线| 九九综合九九| 国产日韩欧美一区| 日本v片在线高清不卡在线观看| 欧美高清不卡| 久久婷婷亚洲| 亚洲伦乱视频| 国产一区二区视频在线看| 国产探花一区| 国产粉嫩在线观看| 精品视频一区二区三区在线观看| 中文字幕中文字幕精品| 9国产精品视频| 亚洲福利久久| 999国产精品999久久久久久| 国产aⅴ精品一区二区四区| 久久成人福利| 91精品福利观看| 91精品日本| 亚洲精品婷婷| 免费在线欧美视频| 亚洲欧美日韩专区| 1024精品久久久久久久久| 久久久久久久久99精品大| 日韩中文视频| 久久国产小视频| 99久久亚洲精品蜜臀| 99久久视频| 欧美 日韩 国产一区二区在线视频| 欧美aa一级| 国产综合亚洲精品一区二| 国产国产精品| av成人国产| 亚洲精品观看| 欧美一区自拍| 国产精品久久亚洲不卡| 国产九九精品| 麻豆91在线播放| 国产成人77亚洲精品www| 亚洲黄色免费av| 久久狠狠婷婷| 国产综合精品| 蜜臀av国产精品久久久久| 四虎在线精品| 免费观看不卡av| 中文日韩在线| 日本免费在线视频不卡一不卡二| 国产精品欧美三级在线观看 | 色偷偷色偷偷色偷偷在线视频| 黑森林国产精品av| 成人午夜精品| 欧美午夜不卡| 日本va欧美va瓶| 国产精品久久| 岛国av免费在线观看| 国精品一区二区三区| 丝袜美腿成人在线| 国产欧美自拍| 人人草在线视频| 欧美日韩国产探花| 日韩欧美中文字幕一区二区三区 | 国产精品av一区二区| 在线亚洲观看| 88久久精品| 超级白嫩亚洲国产第一| 好吊日精品视频| 欧美日一区二区三区在线观看国产免| 欧美国产三级| 久久久一本精品| 亚洲欧美日本视频在线观看| 日韩欧美激情| 超级白嫩亚洲国产第一| 99riav1国产精品视频| 国产日韩欧美一区二区三区| 亚洲国产福利| 亚洲小说春色综合另类电影| 国产精品亲子伦av一区二区三区| 久久久久久网| 石原莉奈一区二区三区在线观看| 国产欧美69| 日韩毛片在线| 亚洲另类av| 激情视频网站在线播放色| 亚洲一区久久| 麻豆国产欧美一区二区三区| 激情久久中文字幕| 国产日本精品| 成人av动漫在线观看| 国产精品一区二区av交换| 亚洲精品中文字幕乱码| 国产精品mm| 天堂成人国产精品一区| 欧美激情福利| 欧美女激情福利| 美女高潮久久久| 水蜜桃久久夜色精品一区的特点| 久久男人av| 石原莉奈在线亚洲二区| 高清在线一区| 亚洲精品国产精品粉嫩| 在线中文字幕播放| 日本麻豆一区二区三区视频| 深夜视频一区二区| 国产伦理久久久久久妇女| 黑丝一区二区三区|