《電子技術應用》
您所在的位置:首頁 > 模擬設計 > 設計應用 > 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網站原創,未經授權禁止轉載。
热re99久久精品国产66热_欧美小视频在线观看_日韩成人激情影院_庆余年2免费日韩剧观看大牛_91久久久久久国产精品_国产原创欧美精品_美女999久久久精品视频_欧美大成色www永久网站婷_国产色婷婷国产综合在线理论片a_国产精品电影在线观看_日韩精品视频在线观看网址_97在线观看免费_性欧美亚洲xxxx乳在线观看_久久精品美女视频网站_777国产偷窥盗摄精品视频_在线日韩第一页
  • <strike id="ygamy"></strike>
  • 
    
      • <del id="ygamy"></del>
        <tfoot id="ygamy"></tfoot>
          <strike id="ygamy"></strike>
          在线观看一区| 亚洲影院在线| 黄色成人免费观看| 亚洲精品一二三区| 亚洲欧美日韩电影| 亚洲天堂偷拍| 国产精品亚洲精品| 99香蕉国产精品偷在线观看| 欧美精品1区2区3区| 欧美成ee人免费视频| 欧美午夜视频在线| 亚洲国产精品久久久久秋霞蜜臀| 亚洲一区黄色| 老司机午夜精品视频| 狠狠色伊人亚洲综合网站色| 日韩亚洲国产欧美| 日韩午夜免费视频| 欧美三级日韩三级国产三级| 亚洲欧美日韩一区在线观看| 亚洲综合三区| 麻豆av一区二区三区久久| 国产精品夫妻自拍| 一区二区三区在线观看国产| 亚洲二区在线视频| 欧美性理论片在线观看片免费| 国内欧美视频一区二区| 国内揄拍国内精品久久| 国产日韩亚洲欧美| 欧美色欧美亚洲另类七区| 亚洲激情婷婷| 亚洲国产精品视频| 久久久久久久久久码影片| 韩国久久久久| 欧美视频一区在线| 亚洲破处大片| 亚洲欧美成人一区二区三区| 韩国亚洲精品| 欧美大香线蕉线伊人久久国产精品| 狠狠色丁香婷综合久久| 1024精品一区二区三区| 久久精品女人天堂| 久久精品国语| 亚洲小视频在线观看| 国产免费成人在线视频| 国内视频精品| 美女视频黄 久久| 欧美黄色免费| 欧美性猛交一区二区三区精品| 激情欧美日韩| 亚洲一区二区视频| 久久影院午夜论| 欧美一区网站| 欧美成人精品高清在线播放| 一区二区欧美日韩| 一本色道久久88精品综合| 国产欧美精品一区二区色综合| 国产精品亚洲片夜色在线| 欧美亚洲一区在线| 另类天堂视频在线观看| 欧美一区二区三区免费大片| 午夜久久美女| 黄色欧美日韩| 国产一区二区在线观看免费| 久久精品综合一区| 亚洲精品国产精品国产自| 欧美国产一区二区三区激情无套| 国产午夜精品全部视频播放| 国产日本欧美视频| 男人天堂欧美日韩| 性做久久久久久| 国产九区一区在线| 欧美日韩视频一区二区三区| 亚洲欧美中文字幕| 欧美电影在线观看完整版| 在线不卡免费欧美| 欧美三级中文字幕在线观看| 夜夜爽99久久国产综合精品女不卡| 亚洲视频一区二区免费在线观看| 亚洲精品影院在线观看| 一区二区视频免费在线观看| 国产精品日韩欧美一区| 国产精品一级二级三级| 蜜臀av国产精品久久久久| 久久精品一区中文字幕| 毛片基地黄久久久久久天堂| 好吊视频一区二区三区四区| 欧美日韩另类字幕中文| 久久成人精品| 亚洲性夜色噜噜噜7777| 狠狠色丁香婷综合久久| 在线视频欧美一区| 久久久高清一区二区三区| 合欧美一区二区三区| 欧美视频福利| 亚洲黄色天堂| 欧美成人精品在线播放| 激情五月婷婷综合| 91久久在线观看| 欧美午夜精品久久久久久孕妇| 欧美日韩免费观看一区=区三区| 国产精品jizz在线观看美国| 欧美日韩一区二区免费在线观看| 欧美激情国产日韩精品一区18| 免费亚洲一区二区| 欧美日韩国产影片| 国产日韩久久| 久久免费99精品久久久久久| 亚洲国产精品成人综合| 国产在线国偷精品产拍免费yy| 日韩视频免费在线观看| 欧美成人精品| 免费高清在线视频一区·| 精品成人a区在线观看| 亚洲成色最大综合在线| 亚洲国产成人av在线| 欧美专区中文字幕| 国产精品免费观看视频| 欧美日韩一区二区三区在线看| 欧美亚州韩日在线看免费版国语版| 一本大道久久精品懂色aⅴ| 国产精品嫩草99a| 久久人人97超碰精品888| 欧美亚洲第一页| 亚洲午夜久久久久久久久电影院| 亚洲精品一区在线观看| 午夜精品久久| 亚洲午夜激情网页| 亚洲欧洲日本一区二区三区| 亚洲欧洲日本国产| 国产精品免费视频xxxx| 最新亚洲一区| 好看不卡的中文字幕| 久久一区精品| 欧美色区777第一页| 久久综合狠狠综合久久综青草| 亚洲第一久久影院| 国产日产欧产精品推荐色| 亚洲国产成人在线视频| 在线视频欧美精品| 中国成人在线视频| 国产日韩欧美在线播放| 国产一区二区三区最好精华液| 国产精品久久久久久久久久妞妞| 久久蜜桃av一区精品变态类天堂| 久久久最新网址| 永久免费毛片在线播放不卡| 国产精品乱码久久久久久| 樱花yy私人影院亚洲| 亚洲精品久久久一区二区三区| 欧美午夜精品理论片a级按摩| 亚洲综合第一| 性色av一区二区三区| 黄色成人av网| 国产精品日韩欧美一区| 怡红院精品视频在线观看极品| 老鸭窝91久久精品色噜噜导演| 欧美日韩国产在线播放网站| 午夜精品久久久久久久蜜桃app| 一区二区精品国产| 亚洲国产精品99久久久久久久久| 欧美理论在线播放| 欧美中文字幕精品| 国产毛片一区二区| 久久精品国产亚洲一区二区三区| 国产精品久久91| 欧美大色视频| 欧美精品精品一区| 99国产精品99久久久久久粉嫩| 国产综合久久久久久鬼色| 久久综合九色综合欧美狠狠| 国产亚洲成av人在线观看导航| 欧美日韩一区二区视频在线观看| 亚洲一区二区三区四区中文| 久久嫩草精品久久久精品一| 国产精品日韩久久久久| 亚洲日本激情| 欧美大片一区二区三区| 亚洲人成人一区二区三区| 亚洲人体大胆视频| 最新高清无码专区| 欧美mv日韩mv国产网站app| 欧美14一18处毛片| 国产欧美日本一区二区三区| 国产尤物精品| 亚洲精品人人| 国产日韩精品电影| 一区二区三区高清视频在线观看| 欧美一区二区三区男人的天堂| 欧美www视频在线观看| 91久久精品国产91性色tv| 亚洲日本中文| 欧美精品国产精品| 亚洲美女视频网| 国产九九视频一区二区三区| 欧美在线日韩在线| 欧美不卡一区| 中文一区二区| 亚洲日本成人女熟在线观看| 国产精品入口66mio| 欧美精品亚洲精品| 亚洲午夜羞羞片| 亚洲欧美变态国产另类| 亚洲女同性videos| 欧美午夜性色大片在线观看| 久久手机免费观看| 欧美一级网站| 久久久久久穴| 久久精品综合网| 欧美午夜在线视频| 午夜在线a亚洲v天堂网2018| 中国成人在线视频| 在线国产欧美| 欧美在线播放高清精品| 最新日韩在线| 激情伊人五月天久久综合| 国产精品综合久久久| 99这里有精品| 一区二区三区高清在线观看| 免费在线播放第一区高清av| 国产精品久久久久久久app| 亚洲午夜av电影| 精品999成人| 亚洲精品一区在线观看香蕉| 国产精品一区二区三区四区五区| 久久久久久久久综合| 亚洲视频香蕉人妖| 国产精品视频一| 久久精品国产精品| 亚洲第一精品在线| 亚洲欧美大片| 国产精品最新自拍| 久久久国产成人精品| 午夜一级在线看亚洲| 亚洲日本成人女熟在线观看| 久久久久综合网| 欧美α欧美αv大片| 欧美日韩国产美女| 欲香欲色天天天综合和网| 国产主播一区二区三区| 欧美1区2区| 亚洲第一区在线观看| 欧美电影打屁股sp| 日韩五码在线| 激情久久久久| 欧美一区二区三区久久精品茉莉花| 国产欧美一区二区三区久久人妖| 老司机午夜免费精品视频| 亚洲精品欧美日韩| 一区二区三区精品视频在线观看| 亚洲午夜成aⅴ人片| 亚洲欧美日韩另类| 国产精品国产自产拍高清av| 欧美理论电影网| 欧美日韩国产三区| 先锋影音国产精品| 日韩视频免费在线观看| 欧美黄色精品| 国产亚洲精品aa午夜观看| 红杏aⅴ成人免费视频| 美女精品视频一区| 久久久精品一区| 亚洲中午字幕| 一区二区三区免费在线观看| 国产精品一区二区黑丝| 篠田优中文在线播放第一区| 欧美视频一区| 亚洲欧美综合国产精品一区| 欧美日韩小视频| 亚洲免费人成在线视频观看| 国产一区二区三区四区五区美女| 性18欧美另类| 9l国产精品久久久久麻豆| 亚洲国产另类久久久精品极度| 欧美性猛交xxxx乱大交退制版| 蜜乳av另类精品一区二区| 99国产精品久久久久久久成人热| 国内精品久久久久影院 日本资源| 欧美在线欧美在线| 欧美亚州一区二区三区| 国产欧美精品日韩| 国内精品一区二区| 国产一区二区你懂的| 狠狠入ady亚洲精品经典电影| 99re66热这里只有精品3直播| 欧美性天天影院| 欧美精品色综合| 欧美精品1区2区| 亚洲黄页视频免费观看| 在线亚洲一区二区| 欧美午夜宅男影院在线观看| 欧美日韩1区2区| 免费观看在线综合| 国产精品久久久久久久电影| 免费在线成人| 一区二区三区毛片| 亚洲乱码日产精品bd| 亚洲国产精品高清久久久| 乱中年女人伦av一区二区| 亚洲在线成人精品| 亚洲国产精品日韩| 午夜欧美视频| 亚洲精品视频啊美女在线直播| 久久久中精品2020中文| 夜夜夜久久久| 国产农村妇女毛片精品久久莱园子| 久久午夜色播影院免费高清| 亚洲图片欧洲图片日韩av| 久久夜色精品国产欧美乱极品| 国产亚洲网站| 国产亚洲精品bt天堂精选| 亚洲国产精品久久久久秋霞不卡| 欧美在线看片| 欧美激情小视频| 久久久久青草大香线综合精品| 午夜精品久久久久久久久久久久久| 国产精品永久入口久久久| 午夜精品国产| 亚洲在线视频免费观看| 欧美在线啊v一区| 国产亚洲精品久久久| 91久久香蕉国产日韩欧美9色| 亚洲一区二区成人| 欧美一区永久视频免费观看| 久久久午夜精品| 欧美精品一区二区三区久久久竹菊| 国产亚洲精品久久久久动| 国产精品福利av| 久久精品视频免费观看|