《電子技術應用》
您所在的位置:首頁 > 模擬設計 > 設計應用 > Android提高之探秘藍牙隱藏API
Android提高之探秘藍牙隱藏API
摘要: 本文探討下藍牙方面的隱藏API。用過Android系統設置(Setting)的人都知道藍牙搜索之后可以建立配對和解除配對,但是這兩項功能的函數沒有在SDK中給出,那么如何去使用這兩項功能呢?
關鍵詞: 接口IC Android 藍牙 API
Abstract:
Key words :

本文探討下藍牙方面的隱藏API。用過Android系統設置(Setting)的人都知道藍牙搜索之后可以建立配對和解除配對,但是這兩項功能的函數沒有在SDK中給出,那么如何去使用這兩項功能呢?本文利用JAVA的反射機制去調用這兩項功能對應的函數:createBond和removeBond,具體的發掘和實現步驟如下:

1.使用Git工具下載platform/packages/apps/Settings.git,在Setting源碼中查找關于建立配對和解除配對的API,知道這兩個API的宿主(BluetoothDevice);

2.使用反射機制對BluetoothDevice枚舉其所有方法和常量,看看是否存在:

view plaincopy to clipboardprint?
static public void printAllInform(Class clsShow) {  
    try {  
        // 取得所有方法  
        Method[] hideMethod = clsShow.getMethods();  
        int i = 0;  
        for (; i < hideMethod.length; i++) {  
            Log.e("method name", hideMethod[i].getName());  
        }  
        // 取得所有常量  
        Field[] allFields = clsShow.getFields();  
        for (i = 0; i < allFields.length; i++) {  
            Log.e("Field name", allFields[i].getName());  
        }  
    } catch (SecurityException e) {  
        // throw new RuntimeException(e.getMessage());  
        e.printStackTrace();  
    } catch (IllegalArgumentException e) {  
        // throw new RuntimeException(e.getMessage());  
        e.printStackTrace();  
    } catch (Exception e) {  
        // TODO Auto-generated catch block  
        e.printStackTrace();  
    }  

 static public void printAllInform(Class clsShow) {
  try {
   // 取得所有方法
   Method[] hideMethod = clsShow.getMethods();
   int i = 0;
   for (; i < hideMethod.length; i++) {
    Log.e("method name", hideMethod[i].getName());
   }
   // 取得所有常量
   Field[] allFields = clsShow.getFields();
   for (i = 0; i < allFields.length; i++) {
    Log.e("Field name", allFields[i].getName());
   }
  } catch (SecurityException e) {
   // throw new RuntimeException(e.getMessage());
   e.printStackTrace();
  } catch (IllegalArgumentException e) {
   // throw new RuntimeException(e.getMessage());
   e.printStackTrace();
  } catch (Exception e) {
   // TODO Auto-generated catch block
   e.printStackTrace();
  }
 } 

結果如下:

11-29 09:19:12.012: method name(452): cancelBondProcess
11-29 09:19:12.020: method name(452): cancelPairingUserInput
11-29 09:19:12.020: method name(452): createBond
11-29 09:19:12.020: method name(452): createInsecureRfcommSocket
11-29 09:19:12.027: method name(452): createRfcommSocket
11-29 09:19:12.027: method name(452): createRfcommSocketToServiceRecord
11-29 09:19:12.027: method name(452): createScoSocket
11-29 09:19:12.027: method name(452): describeContents
11-29 09:19:12.035: method name(452): equals
11-29 09:19:12.035: method name(452): fetchUuidsWithSdp
11-29 09:19:12.035: method name(452): getAddress
11-29 09:19:12.035: method name(452): getBluetoothClass
11-29 09:19:12.043: method name(452): getBondState
11-29 09:19:12.043: method name(452): getName
11-29 09:19:12.043: method name(452): getServiceChannel
11-29 09:19:12.043: method name(452): getTrustState
11-29 09:19:12.043: method name(452): getUuids
11-29 09:19:12.043: method name(452): hashCode
11-29 09:19:12.043: method name(452): isBluetoothDock
11-29 09:19:12.043: method name(452): removeBond
11-29 09:19:12.043: method name(452): setPairingConfirmation
11-29 09:19:12.043: method name(452): setPasskey
11-29 09:19:12.043: method name(452): setPin
11-29 09:19:12.043: method name(452): setTrust
11-29 09:19:12.043: method name(452): toString
11-29 09:19:12.043: method name(452): writeToParcel
11-29 09:19:12.043: method name(452): convertPinToBytes
11-29 09:19:12.043: method name(452): getClass
11-29 09:19:12.043: method name(452): notify
11-29 09:19:12.043: method name(452): notifyAll
11-29 09:19:12.043: method name(452): wait
11-29 09:19:12.051: method name(452): wait
11-29 09:19:12.051: method name(452): wait

3.如果枚舉發現API存在(SDK卻隱藏),則自己實現調用方法:

view plaincopy to clipboardprint?
/** 
 * 與設備配對 參考源碼:platform/packages/apps/Settings.git 
 * \Settings\src\com\android\settings\bluetooth\CachedBluetoothDevice.java 
 */ 
static public boolean createBond(Class btClass,BluetoothDevice btDevice) throws Exception {  
    Method createBondMethod = btClass.getMethod("createBond");  
    Boolean returnValue = (Boolean) createBondMethod.invoke(btDevice);  
    return returnValue.booleanValue();  
}  
 
/** 
 * 與設備解除配對 參考源碼:platform/packages/apps/Settings.git 
 * \Settings\src\com\android\settings\bluetooth\CachedBluetoothDevice.java 
 */ 
static public boolean removeBond(Class btClass,BluetoothDevice btDevice) throws Exception {  
    Method removeBondMethod = btClass.getMethod("removeBond");  
    Boolean returnValue = (Boolean) removeBondMethod.invoke(btDevice);  
    return returnValue.booleanValue();  

 /**
  * 與設備配對 參考源碼:platform/packages/apps/Settings.git
  * \Settings\src\com\android\settings\bluetooth\CachedBluetoothDevice.java
  */
 static public boolean createBond(Class btClass,BluetoothDevice btDevice) throws Exception {
  Method createBondMethod = btClass.getMethod("createBond");
  Boolean returnValue = (Boolean) createBondMethod.invoke(btDevice);
  return returnValue.booleanValue();
 }

 /**
  * 與設備解除配對 參考源碼:platform/packages/apps/Settings.git
  * \Settings\src\com\android\settings\bluetooth\CachedBluetoothDevice.java
  */
 static public boolean removeBond(Class btClass,BluetoothDevice btDevice) throws Exception {
  Method removeBondMethod = btClass.getMethod("removeBond");
  Boolean returnValue = (Boolean) removeBondMethod.invoke(btDevice);
  return returnValue.booleanValue();
 }

PS:SDK之所以不給出隱藏的API肯定有其原因,也許是出于安全性或者是后續版本兼容性的考慮,因此不能保證隱藏API能在所有Android平臺上很好地運行。。。

本文程序運行效果如下:

main.xml源碼如下:

view plaincopy to clipboardprint?
 
    android:orientation="vertical" android:layout_width="fill_parent" 
    android:layout_height="fill_parent"> 
            android:layout_height="wrap_content" android:layout_width="fill_parent"> 
        
        
     
            android:layout_width="wrap_content" android:layout_height="wrap_content"> 
            android:layout_height="fill_parent"> 
     
 

 android:orientation="vertical" android:layout_width="fill_parent"
 android:layout_height="fill_parent">
   android:layout_height="wrap_content" android:layout_width="fill_parent">
  
  
 
   android:layout_width="wrap_content" android:layout_height="wrap_content">
   android:layout_height="fill_parent">
 

 

工具類ClsUtils.java源碼如下:

view plaincopy to clipboardprint?
package com.testReflect;  
 
import java.lang.reflect.Field;  
import java.lang.reflect.Method;  
 
import android.bluetooth.BluetoothDevice;  
import android.util.Log;  
 
public class ClsUtils {   
  

本文探討下藍牙方面的隱藏API。用過Android系統設置(Setting)的人都知道藍牙搜索之后可以建立配對和解除配對,但是這兩項功能的函數沒有在SDK中給出,那么如何去使用這兩項功能呢?本文利用JAVA的反射機制去調用這兩項功能對應的函數:createBond和removeBond,具體的發掘和實現步驟如下:

1.使用Git工具下載platform/packages/apps/Settings.git,在Setting源碼中查找關于建立配對和解除配對的API,知道這兩個API的宿主(BluetoothDevice);

2.使用反射機制對BluetoothDevice枚舉其所有方法和常量,看看是否存在:

view plaincopy to clipboardprint?
static public void printAllInform(Class clsShow) {  
    try {  
        // 取得所有方法  
        Method[] hideMethod = clsShow.getMethods();  
        int i = 0;  
        for (; i < hideMethod.length; i++) {  
            Log.e("method name", hideMethod[i].getName());  
        }  
        // 取得所有常量  
        Field[] allFields = clsShow.getFields();  
        for (i = 0; i < allFields.length; i++) {  
            Log.e("Field name", allFields[i].getName());  
        }  
    } catch (SecurityException e) {  
        // throw new RuntimeException(e.getMessage());  
        e.printStackTrace();  
    } catch (IllegalArgumentException e) {  
        // throw new RuntimeException(e.getMessage());  
        e.printStackTrace();  
    } catch (Exception e) {  
        // TODO Auto-generated catch block  
        e.printStackTrace();  
    }  

 static public void printAllInform(Class clsShow) {
  try {
   // 取得所有方法
   Method[] hideMethod = clsShow.getMethods();
   int i = 0;
   for (; i < hideMethod.length; i++) {
    Log.e("method name", hideMethod[i].getName());
   }
   // 取得所有常量
   Field[] allFields = clsShow.getFields();
   for (i = 0; i < allFields.length; i++) {
    Log.e("Field name", allFields[i].getName());
   }
  } catch (SecurityException e) {
   // throw new RuntimeException(e.getMessage());
   e.printStackTrace();
  } catch (IllegalArgumentException e) {
   // throw new RuntimeException(e.getMessage());
   e.printStackTrace();
  } catch (Exception e) {
   // TODO Auto-generated catch block
   e.printStackTrace();
  }
 } 

結果如下:

11-29 09:19:12.012: method name(452): cancelBondProcess
11-29 09:19:12.020: method name(452): cancelPairingUserInput
11-29 09:19:12.020: method name(452): createBond
11-29 09:19:12.020: method name(452): createInsecureRfcommSocket
11-29 09:19:12.027: method name(452): createRfcommSocket
11-29 09:19:12.027: method name(452): createRfcommSocketToServiceRecord
11-29 09:19:12.027: method name(452): createScoSocket
11-29 09:19:12.027: method name(452): describeContents
11-29 09:19:12.035: method name(452): equals
11-29 09:19:12.035: method name(452): fetchUuidsWithSdp
11-29 09:19:12.035: method name(452): getAddress
11-29 09:19:12.035: method name(452): getBluetoothClass
11-29 09:19:12.043: method name(452): getBondState
11-29 09:19:12.043: method name(452): getName
11-29 09:19:12.043: method name(452): getServiceChannel
11-29 09:19:12.043: method name(452): getTrustState
11-29 09:19:12.043: method name(452): getUuids
11-29 09:19:12.043: method name(452): hashCode
11-29 09:19:12.043: method name(452): isBluetoothDock
11-29 09:19:12.043: method name(452): removeBond
11-29 09:19:12.043: method name(452): setPairingConfirmation
11-29 09:19:12.043: method name(452): setPasskey
11-29 09:19:12.043: method name(452): setPin
11-29 09:19:12.043: method name(452): setTrust
11-29 09:19:12.043: method name(452): toString
11-29 09:19:12.043: method name(452): writeToParcel
11-29 09:19:12.043: method name(452): convertPinToBytes
11-29 09:19:12.043: method name(452): getClass
11-29 09:19:12.043: method name(452): notify
11-29 09:19:12.043: method name(452): notifyAll
11-29 09:19:12.043: method name(452): wait
11-29 09:19:12.051: method name(452): wait
11-29 09:19:12.051: method name(452): wait

3.如果枚舉發現API存在(SDK卻隱藏),則自己實現調用方法:

view plaincopy to clipboardprint?
/** 
 * 與設備配對 參考源碼:platform/packages/apps/Settings.git 
 * \Settings\src\com\android\settings\bluetooth\CachedBluetoothDevice.java 
 */ 
static public boolean createBond(Class btClass,BluetoothDevice btDevice) throws Exception {  
    Method createBondMethod = btClass.getMethod("createBond");  
    Boolean returnValue = (Boolean) createBondMethod.invoke(btDevice);  
    return returnValue.booleanValue();  
}  
 
/** 
 * 與設備解除配對 參考源碼:platform/packages/apps/Settings.git 
 * \Settings\src\com\android\settings\bluetooth\CachedBluetoothDevice.java 
 */ 
static public boolean removeBond(Class btClass,BluetoothDevice btDevice) throws Exception {  
    Method removeBondMethod = btClass.getMethod("removeBond");  
    Boolean returnValue = (Boolean) removeBondMethod.invoke(btDevice);  
    return returnValue.booleanValue();  

 /**
  * 與設備配對 參考源碼:platform/packages/apps/Settings.git
  * \Settings\src\com\android\settings\bluetooth\CachedBluetoothDevice.java
  */
 static public boolean createBond(Class btClass,BluetoothDevice btDevice) throws Exception {
  Method createBondMethod = btClass.getMethod("createBond");
  Boolean returnValue = (Boolean) createBondMethod.invoke(btDevice);
  return returnValue.booleanValue();
 }

 /**
  * 與設備解除配對 參考源碼:platform/packages/apps/Settings.git
  * \Settings\src\com\android\settings\bluetooth\CachedBluetoothDevice.java
  */
 static public boolean removeBond(Class btClass,BluetoothDevice btDevice) throws Exception {
  Method removeBondMethod = btClass.getMethod("removeBond");
  Boolean returnValue = (Boolean) removeBondMethod.invoke(btDevice);
  return returnValue.booleanValue();
 }

PS:SDK之所以不給出隱藏的API肯定有其原因,也許是出于安全性或者是后續版本兼容性的考慮,因此不能保證隱藏API能在所有Android平臺上很好地運行。。。

本文程序運行效果如下:

main.xml源碼如下:

view plaincopy to clipboardprint?
 
    android:orientation="vertical" android:layout_width="fill_parent" 
    android:layout_height="fill_parent"> 
            android:layout_height="wrap_content" android:layout_width="fill_parent"> 
        
        
     
            android:layout_width="wrap_content" android:layout_height="wrap_content"> 
            android:layout_height="fill_parent"> 
     
 

 android:orientation="vertical" android:layout_width="fill_parent"
 android:layout_height="fill_parent">
   android:layout_height="wrap_content" android:layout_width="fill_parent">
  
  
 
   android:layout_width="wrap_content" android:layout_height="wrap_content">
   android:layout_height="fill_parent">
 

 

工具類ClsUtils.java源碼如下:

view plaincopy to clipboardprint?
package com.testReflect;  
 
import java.lang.reflect.Field;  
import java.lang.reflect.Method;  
 
import android.bluetooth.BluetoothDevice;  
import android.util.Log;  
 
public class ClsUtils {   
  


    /** 
     * 與設備配對 參考源碼:platform/packages/apps/Settings.git 
     * \Settings\src\com\android\settings\bluetooth\CachedBluetoothDevice.java 
     */ 
    static public boolean createBond(Class btClass,BluetoothDevice btDevice) throws Exception {  
        Method createBondMethod = btClass.getMethod("createBond");  
        Boolean returnValue = (Boolean) createBondMethod.invoke(btDevice);  
        return returnValue.booleanValue();  
    }  
 
    /** 
     * 與設備解除配對 參考源碼:platform/packages/apps/Settings.git 
     * \Settings\src\com\android\settings\bluetooth\CachedBluetoothDevice.java 
     */ 
    static public boolean removeBond(Class btClass,BluetoothDevice btDevice) throws Exception {  
        Method removeBondMethod = btClass.getMethod("removeBond");  
        Boolean returnValue = (Boolean) removeBondMethod.invoke(btDevice);  
        return returnValue.booleanValue();  
    }  
 
    /** 
     *  
     * @param clsShow 
     */ 
    static public void printAllInform(Class clsShow) {  
        try {  
            // 取得所有方法  
            Method[] hideMethod = clsShow.getMethods();  
            int i = 0;  
            for (; i < hideMethod.length; i++) {  
                Log.e("method name", hideMethod[i].getName());  
            }  
            // 取得所有常量  
            Field[] allFields = clsShow.getFields();  
            for (i = 0; i < allFields.length; i++) {  
                Log.e("Field name", allFields[i].getName());  
            }  
        } catch (SecurityException e) {  
            // throw new RuntimeException(e.getMessage());  
            e.printStackTrace();  
        } catch (IllegalArgumentException e) {  
            // throw new RuntimeException(e.getMessage());  
            e.printStackTrace();  
        } catch (Exception e) {  
            // TODO Auto-generated catch block  
            e.printStackTrace();  
        }  
    }  

package com.testReflect;

import java.lang.reflect.Field;
import java.lang.reflect.Method;

import android.bluetooth.BluetoothDevice;
import android.util.Log;

public class ClsUtils {

 /**
  * 與設備配對 參考源碼:platform/packages/apps/Settings.git
  * \Settings\src\com\android\settings\bluetooth\CachedBluetoothDevice.java
  */
 static public boolean createBond(Class btClass,BluetoothDevice btDevice) throws Exception {
  Method createBondMethod = btClass.getMethod("createBond");
  Boolean returnValue = (Boolean) createBondMethod.invoke(btDevice);
  return returnValue.booleanValue();
 }

 /**
  * 與設備解除配對 參考源碼:platform/packages/apps/Settings.git
  * \Settings\src\com\android\settings\bluetooth\CachedBluetoothDevice.java
  */
 static public boolean removeBond(Class btClass,BluetoothDevice btDevice) throws Exception {
  Method removeBondMethod = btClass.getMethod("removeBond");
  Boolean returnValue = (Boolean) removeBondMethod.invoke(btDevice);
  return returnValue.booleanValue();
 }

 /**
  *
  * @param clsShow
  */
 static public void printAllInform(Class clsShow) {
  try {
   // 取得所有方法
   Method[] hideMethod = clsShow.getMethods();
   int i = 0;
   for (; i < hideMethod.length; i++) {
    Log.e("method name", hideMethod[i].getName());
   }
   // 取得所有常量
   Field[] allFields = clsShow.getFields();
   for (i = 0; i < allFields.length; i++) {
    Log.e("Field name", allFields[i].getName());
   }
  } catch (SecurityException e) {
   // throw new RuntimeException(e.getMessage());
   e.printStackTrace();
  } catch (IllegalArgumentException e) {
   // throw new RuntimeException(e.getMessage());
   e.printStackTrace();
  } catch (Exception e) {
   // TODO Auto-generated catch block
   e.printStackTrace();
  }
 }
}
 

主程序testReflect.java的源碼如下:

view plaincopy to clipboardprint?
package com.testReflect;  
 
import java.util.ArrayList;  
import java.util.List;  
import android.app.Activity;  
import android.bluetooth.BluetoothAdapter;  
import android.bluetooth.BluetoothDevice;  
import android.content.BroadcastReceiver;  
import android.content.Context;  
import android.content.Intent;  
import android.content.IntentFilter;  
import android.os.Bundle;  
import android.util.Log;  
import android.view.View;  
import android.widget.AdapterView;  
import android.widget.ArrayAdapter;  
import android.widget.Button;  
import android.widget.ListView;  
import android.widget.Toast;  
 
public class testReflect extends Activity {  
    Button btnSearch, btnShow;  
    ListView lvBTDevices;  
    ArrayAdapter adtDevices;  
    List lstDevices = new ArrayList();  
    BluetoothDevice btDevice;  
    BluetoothAdapter btAdapt;  
 
    @Override 
    public void onCreate(Bundle savedInstanceState) {  
        super.onCreate(savedInstanceState);  
        setContentView(R.layout.main);  
 
        btnSearch = (Button) this.findViewById(R.id.btnSearch);  
        btnSearch.setOnClickListener(new ClickEvent());  
        btnShow = (Button) this.findViewById(R.id.btnShow);  
        btnShow.setOnClickListener(new ClickEvent());  
 
        lvBTDevices = (ListView) this.findViewById(R.id.ListView01);  
        adtDevices = new ArrayAdapter(testReflect.this,  
                android.R.layout.simple_list_item_1, lstDevices);  
        lvBTDevices.setAdapter(adtDevices);  
        lvBTDevices.setOnItemClickListener(new ItemClickEvent());  
 
        btAdapt = BluetoothAdapter.getDefaultAdapter();// 初始化本機藍牙功能  
        if (btAdapt.getState() == BluetoothAdapter.STATE_OFF)// 開藍牙  
            btAdapt.enable();  
 
        // 注冊Receiver來獲取藍牙設備相關的結果  
        IntentFilter intent = new IntentFilter();  
        intent.addAction(BluetoothDevice.ACTION_FOUND);  
        intent.addAction(BluetoothDevice.ACTION_BOND_STATE_CHANGED);  
        registerReceiver(searchDevices, intent);  
 
    }   
  


       
    private BroadcastReceiver searchDevices = new BroadcastReceiver() {  
        public void onReceive(Context context, Intent intent) {  
            String action = intent.getAction();  
            Bundle b = intent.getExtras();  
            Object[] lstName = b.keySet().toArray();  
 
            // 顯示所有收到的消息及其細節  
            for (int i = 0; i < lstName.length; i++) {  
                String keyName = lstName[i].toString();  
                Log.e(keyName, String.valueOf(b.get(keyName)));  
            }  
            // 搜索設備時,取得設備的MAC地址  
            if (BluetoothDevice.ACTION_FOUND.equals(action)) {  
                BluetoothDevice device = intent  
                        .getParcelableExtra(BluetoothDevice.EXTRA_DEVICE);  
 
                if (device.getBondState() == BluetoothDevice.BOND_NONE) {  
                    String str = "未配對|" + device.getName() + "|" + device.getAddress();  
                    lstDevices.add(str); // 獲取設備名稱和mac地址  
                    adtDevices.notifyDataSetChanged();  
                }  
            }  
        }  
    };  
 
    class ItemClickEvent implements AdapterView.OnItemClickListener {  
 
        @Override 
        public void onItemClick(AdapterView arg0, View arg1, int arg2,  
                long arg3) {  
            btAdapt.cancelDiscovery();  
            String str = lstDevices.get(arg2);  
            String[] values = str.split("\\|");  
            String address=values[2];  
 
            btDevice = btAdapt.getRemoteDevice(address);  
            try {  
                if(values[0].equals("未配對"))  
                {     
                    Toast.makeText(testReflect.this, "由未配對轉為已配對", 500).show();  
                    ClsUtils.createBond(btDevice.getClass(), btDevice);  
                }  
                else if(values[0].equals("已配對"))  
                {  
                    Toast.makeText(testReflect.this, "由已配對轉為未配對", 500).show();  
                    ClsUtils.removeBond(btDevice.getClass(), btDevice);  
                }  
            } catch (Exception e) {  
                // TODO Auto-generated catch block  
                e.printStackTrace();  
            }  
        }  
          
    }  
      
    /** 
     * 按鍵處理 
     * @author GV 
     * 
     */ 
    class ClickEvent implements View.OnClickListener {  
 
        @Override 
        public void onClick(View v) {  
            if (v == btnSearch) {//搜索附近的藍牙設備  
                lstDevices.clear();  
                  
                Object[] lstDevice = btAdapt.getBondedDevices().toArray();  
                for (int i = 0; i < lstDevice.length; i++) {  
                    BluetoothDevice device=(BluetoothDevice)lstDevice[i];  
                    String str = "已配對|" + device.getName() + "|" + device.getAddress();  
                    lstDevices.add(str); // 獲取設備名稱和mac地址  
                    adtDevices.notifyDataSetChanged();  
                }  
                // 開始搜索  
                setTitle("本機藍牙地址:" + btAdapt.getAddress());  
                btAdapt.startDiscovery();  
            }  
            else if(v==btnShow){//顯示BluetoothDevice的所有方法和常量,包括隱藏API  
                ClsUtils.printAllInform(btDevice.getClass());  
            }  
 
        }  
 
    }  
 
 

此內容為AET網站原創,未經授權禁止轉載。
亚洲一区二区欧美_亚洲丝袜一区_99re亚洲国产精品_日韩亚洲一区二区
亚洲图片欧美日产| 久久噜噜噜精品国产亚洲综合| 亚洲午夜精品| 最新国产拍偷乱拍精品| 激情五月婷婷综合| 国内精品久久久久久久影视蜜臀 | 欧美一区在线视频| 亚洲欧美资源在线| 亚洲免费影视第一页| 在线亚洲精品| 一区二区三区四区五区视频 | 亚洲一区二三| 亚洲综合精品自拍| 午夜精品网站| 久久爱另类一区二区小说| 欧美亚洲网站| 欧美一区二区三区免费观看| 欧美在线日韩| 久久视频在线视频| 久久久久欧美精品| 久久综合综合久久综合| 欧美a级片网站| 欧美日本免费| 欧美午夜精品久久久| 欧美午夜不卡在线观看免费 | 欧美极品在线播放| 欧美日韩裸体免费视频| 欧美婷婷六月丁香综合色| 国产精品免费一区二区三区在线观看 | 欧美一区二区三区久久精品| 欧美一区精品| 亚洲国产欧美日韩另类综合| 亚洲美女一区| 亚洲香蕉在线观看| 欧美一区国产在线| 久久视频这里只有精品| 欧美激情国产日韩| 国产精品乱码妇女bbbb| 国产一区二区三区久久精品| 在线观看av不卡| 日韩视频一区| 亚洲欧美日韩精品久久亚洲区 | 国产精品高潮呻吟视频| 国产一区 二区 三区一级| 黄色欧美日韩| 亚洲精品欧美专区| 亚洲一区二区三区中文字幕在线| 亚洲欧美日韩在线高清直播| 亚洲第一在线| 亚洲午夜一区二区三区| 久久成人在线| 欧美大秀在线观看| 国产精品久久久久7777婷婷| 国产一区高清视频| 亚洲精品国产精品久久清纯直播| 亚洲午夜激情网站| 91久久精品国产| 午夜精品区一区二区三| 老色鬼久久亚洲一区二区 | 国产精品porn| 精品动漫3d一区二区三区| 日韩亚洲欧美成人| 欧美一区二区在线免费观看| 99国产精品自拍| 欧美在线资源| 欧美日韩精品免费观看视一区二区 | 久久久激情视频| 欧美日韩国产三级| 99精品热视频只有精品10| 久久gogo国模裸体人体| 亚洲九九爱视频| 欧美在线看片| 欧美精品一区在线播放| 国产亚洲一区在线播放| 亚洲最新在线| 亚洲国产精品一区二区第一页| 亚洲小视频在线| 欧美aa在线视频| 国产情人节一区| 一本大道久久精品懂色aⅴ | 亚洲一品av免费观看| 久久伊伊香蕉| 国产精品国产三级国产aⅴ浪潮| 伊人精品成人久久综合软件| 亚洲制服少妇| 中文精品视频| 欧美成人午夜影院| 国产一区二区日韩精品| 中文一区二区| 日韩一二在线观看| 久久字幕精品一区| 国产欧美午夜| 亚洲午夜久久久久久久久电影网| 亚洲国产成人久久| 欧美在线关看| 国产精品亚洲综合一区在线观看| 亚洲精品影视在线观看| 亚洲黄色精品| 久久一区二区三区国产精品| 国产欧美午夜| 亚洲自拍偷拍福利| 亚洲欧美国产77777| 欧美日韩一区二区免费视频| 亚洲黄色成人| 亚洲精品欧美激情| 男男成人高潮片免费网站| 激情综合激情| 久久精品欧洲| 久久香蕉国产线看观看av| 国产欧美一区二区三区在线老狼| 亚洲香蕉网站| 亚洲欧美日韩国产一区| 国产精品第十页| 亚洲小说欧美另类社区| 亚洲欧美日韩一区二区在线| 欧美午夜精品久久久久久超碰| 99精品欧美| 亚洲影院色无极综合| 欧美网站在线观看| 亚洲系列中文字幕| 欧美一区二区免费| 国产欧美一级| 欧美中文字幕在线播放| 久久手机精品视频| 亚洲盗摄视频| 日韩手机在线导航| 欧美日韩国产123| 一区二区精品在线观看| 亚洲伊人色欲综合网| 国产精品二区在线| 亚洲欧美日韩在线一区| 久久高清福利视频| 国产在线精品一区二区夜色| 欧美一区二区三区视频| 久久亚洲私人国产精品va媚药| 激情综合网址| 99re热这里只有精品视频| 欧美日本韩国一区| 亚洲一区www| 久久国产精品久久国产精品| 国产一区二区三区四区五区美女| 久久激情综合网| 欧美好吊妞视频| 99热在这里有精品免费| 亚洲欧美国产高清| 国内精品伊人久久久久av一坑| 亚洲国内精品| 欧美日产一区二区三区在线观看| 99热这里只有精品8| 性欧美精品高清| 激情久久中文字幕| 一本色道久久99精品综合| 欧美天天在线| 欧美在线免费观看亚洲| 欧美激情中文字幕一区二区| 99视频精品在线| 久久精品中文字幕一区| 在线日本成人| 亚洲在线视频免费观看| 国产夜色精品一区二区av| 亚洲黄色影片| 欧美色欧美亚洲另类七区| 香蕉久久夜色精品国产| 欧美福利精品| 亚洲欧美激情一区| 欧美v日韩v国产v| 亚洲午夜伦理| 麻豆av一区二区三区久久| 亚洲麻豆一区| 久久一日本道色综合久久| 亚洲免费播放| 久久一区中文字幕| 亚洲视频在线播放| 欧美成人福利视频| 亚洲在线免费视频| 欧美成人黄色小视频| 亚洲一区二区视频在线观看| 国产精品一二三四区| 久久精品国产久精国产思思| 亚洲电影第三页| 午夜精品免费在线| 亚洲国产欧美一区二区三区久久 | 欧美成人在线网站| 亚洲一区在线观看免费观看电影高清| 久久久久一区二区| 99亚洲伊人久久精品影院红桃| 久久九九免费| 一区二区三区.www| 久久综合国产精品| 亚洲午夜影视影院在线观看| 欧美高清视频在线观看| 香蕉久久夜色精品国产| 欧美日韩专区在线| 亚洲激情在线视频| 国产欧美在线看| 国产精品99久久久久久久vr| 激情六月综合| 欧美一区二区三区四区在线观看地址 | 亚洲另类在线视频| 久久这里有精品视频|