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

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

1.使用Git工具下載platform/packages/apps/Settings.git,在Setting源碼中查找關(guān)于建立配對和解除配對的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();
  }
 } 

結(jié)果如下:

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.如果枚舉發(fā)現(xiàn)API存在(SDK卻隱藏),則自己實現(xiàn)調(diào)用方法:

view plaincopy to clipboardprint?
/** 
 * 與設(shè)備配對 參考源碼: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();  
}  
 
/** 
 * 與設(shè)備解除配對 參考源碼: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();  

 /**
  * 與設(shè)備配對 參考源碼: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();
 }

 /**
  * 與設(shè)備解除配對 參考源碼: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肯定有其原因,也許是出于安全性或者是后續(xù)版本兼容性的考慮,因此不能保證隱藏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系統(tǒng)設(shè)置(Setting)的人都知道藍牙搜索之后可以建立配對和解除配對,但是這兩項功能的函數(shù)沒有在SDK中給出,那么如何去使用這兩項功能呢?本文利用JAVA的反射機制去調(diào)用這兩項功能對應(yīng)的函數(shù):createBond和removeBond,具體的發(fā)掘和實現(xiàn)步驟如下:

1.使用Git工具下載platform/packages/apps/Settings.git,在Setting源碼中查找關(guān)于建立配對和解除配對的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();
  }
 } 

結(jié)果如下:

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.如果枚舉發(fā)現(xiàn)API存在(SDK卻隱藏),則自己實現(xiàn)調(diào)用方法:

view plaincopy to clipboardprint?
/** 
 * 與設(shè)備配對 參考源碼: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();  
}  
 
/** 
 * 與設(shè)備解除配對 參考源碼: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();  

 /**
  * 與設(shè)備配對 參考源碼: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();
 }

 /**
  * 與設(shè)備解除配對 參考源碼: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肯定有其原因,也許是出于安全性或者是后續(xù)版本兼容性的考慮,因此不能保證隱藏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 {   
  


    /** 
     * 與設(shè)備配對 參考源碼: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();  
    }  
 
    /** 
     * 與設(shè)備解除配對 參考源碼: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 {

 /**
  * 與設(shè)備配對 參考源碼: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();
 }

 /**
  * 與設(shè)備解除配對 參考源碼: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來獲取藍牙設(shè)備相關(guān)的結(jié)果  
        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();  
 
            // 顯示所有收到的消息及其細(xì)節(jié)  
            for (int i = 0; i < lstName.length; i++) {  
                String keyName = lstName[i].toString();  
                Log.e(keyName, String.valueOf(b.get(keyName)));  
            }  
            // 搜索設(shè)備時,取得設(shè)備的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); // 獲取設(shè)備名稱和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, "由未配對轉(zhuǎn)為已配對", 500).show();  
                    ClsUtils.createBond(btDevice.getClass(), btDevice);  
                }  
                else if(values[0].equals("已配對"))  
                {  
                    Toast.makeText(testReflect.this, "由已配對轉(zhuǎn)為未配對", 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) {//搜索附近的藍牙設(shè)備  
                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); // 獲取設(shè)備名稱和mac地址  
                    adtDevices.notifyDataSetChanged();  
                }  
                // 開始搜索  
                setTitle("本機藍牙地址:" + btAdapt.getAddress());  
                btAdapt.startDiscovery();  
            }  
            else if(v==btnShow){//顯示BluetoothDevice的所有方法和常量,包括隱藏API  
                ClsUtils.printAllInform(btDevice.getClass());  
            }  
 
        }  
 
    }  
 
 

此內(nèi)容為AET網(wǎng)站原創(chuàng),未經(jīng)授權(quán)禁止轉(zhuǎn)載。
亚洲一区二区欧美_亚洲丝袜一区_99re亚洲国产精品_日韩亚洲一区二区
国内久久视频| 99亚洲一区二区| 欧美日韩精品在线| 欧美a级一区| 鲁大师影院一区二区三区| 欧美一区午夜精品| 亚洲欧美乱综合| 亚洲一二区在线| 亚洲午夜久久久| 亚洲午夜激情网站| 一区二区三区回区在观看免费视频| 亚洲欧洲日本一区二区三区| 亚洲国产免费看| 亚洲福利视频一区二区| 亚洲高清网站| 亚洲激情偷拍| 日韩视频在线免费| 亚洲性xxxx| 小嫩嫩精品导航| 久久成人免费视频| 久久久久天天天天| 久久中文字幕一区| 免费在线欧美黄色| 欧美韩日一区二区| 欧美日韩精品久久| 欧美婷婷久久| 国产情侣久久| 国内成人精品视频| 在线欧美影院| 日韩一二在线观看| 亚洲一区二区三区在线播放| 亚洲欧美日韩天堂| 久久精品女人| 亚洲美女在线观看| 中文在线一区| 亚久久调教视频| 老色批av在线精品| 欧美激情一区二区三区| 欧美视频官网| 国产欧美日本一区二区三区| 国内精品久久久久影院色| 亚洲高清av| 夜夜嗨av色综合久久久综合网| 制服丝袜亚洲播放| 午夜在线播放视频欧美| 亚洲国语精品自产拍在线观看| 亚洲乱码久久| 午夜视频久久久| 久久中文精品| 欧美日韩网址| 国产一区二区高清| 亚洲精品免费在线观看| 亚洲图片激情小说| 欧美在线视频日韩| 99精品国产福利在线观看免费| 亚洲欧美区自拍先锋| 久久久亚洲国产天美传媒修理工| 欧美va天堂| 国产精品亚洲人在线观看| 在线免费不卡视频| 中国亚洲黄色| 久久激情五月激情| 亚洲午夜电影在线观看| 久久久噜噜噜久噜久久| 欧美精品亚洲精品| 国产日韩三区| 亚洲精品视频免费观看| 欧美一区二区女人| 中文av一区二区| 久久欧美肥婆一二区| 欧美日韩一区二区免费视频| 国内在线观看一区二区三区| 一本色道久久88精品综合| 久久精品导航| 亚洲自拍偷拍福利| 欧美超级免费视 在线| 国产精品麻豆va在线播放| 亚洲高清视频一区| 亚洲在线一区| 一区二区毛片| 免费在线亚洲| 国产欧美精品日韩区二区麻豆天美 | 欧美成人一区二区三区在线观看| 国产精品美腿一区在线看| 亚洲大胆av| 欧美亚洲免费| 亚洲一区二区免费在线| 免费成人av| 国产一区二区三区久久久久久久久 | 中文一区二区| 日韩视频一区二区| 久久野战av| 国产精品一二三视频| 日韩午夜高潮| 日韩视频亚洲视频| 欧美 亚欧 日韩视频在线| 国产亚洲精品久久久久婷婷瑜伽| 中文网丁香综合网| 一区二区高清在线| 欧美激情第10页| 精品动漫3d一区二区三区免费版 | 欧美成人精品影院| 狠狠色噜噜狠狠色综合久| 亚洲欧美日韩在线综合| 亚洲愉拍自拍另类高清精品| 欧美伦理91i| 亚洲日本理论电影| 91久久精品一区二区别| 久久久久国产一区二区三区| 国产精品久久久| 中文网丁香综合网| 亚洲影院污污.| 欧美日韩三级视频| 亚洲乱码国产乱码精品精可以看| 亚洲人成人一区二区三区| 老司机久久99久久精品播放免费 | 久久成人18免费观看| 欧美性猛交视频| 一本大道av伊人久久综合| 夜久久久久久| 欧美日韩国内| 一区二区av在线| 亚洲在线观看免费| 国产精品美女久久久久久久| 亚洲午夜视频在线| 欧美亚洲网站| 国产伦精品一区二区三区视频孕妇| 亚洲一区二区免费视频| 亚洲免费视频观看| 国产精品视频久久一区| 亚洲一区二区综合| 欧美一区二区三区男人的天堂 | 中文在线一区| 欧美日韩综合网| 在线一区二区三区四区| 亚洲一区在线直播| 国产精品日本一区二区| 亚洲欧美日韩人成在线播放| 久久国产精品久久久久久电车| 国产一区二区三区久久 | 麻豆久久久9性大片| 亚洲国产婷婷香蕉久久久久久| 亚洲精选一区二区| 欧美美女操人视频| 中文亚洲欧美| 欧美专区在线| 在线日韩日本国产亚洲| 日韩亚洲综合在线| 欧美午夜女人视频在线| 午夜国产一区| 猛干欧美女孩| 亚洲免费av网站| 午夜亚洲福利| 在线播放视频一区| 中日韩美女免费视频网址在线观看| 国产精品jizz在线观看美国| 午夜一区二区三区不卡视频| 免费的成人av| 宅男66日本亚洲欧美视频| 久久久精彩视频| 亚洲人成毛片在线播放| 亚洲欧美成人在线| 狠狠色丁香久久综合频道| 亚洲美女视频在线免费观看| 欧美系列电影免费观看| 欧美一级播放| 欧美精品少妇一区二区三区| 亚洲欧美日韩精品一区二区| 免费成人av在线| 一本久久综合亚洲鲁鲁五月天| 久久er99精品| 亚洲人成7777| 欧美一级二级三级蜜桃| 亚洲国产99| 欧美亚洲在线| 最新69国产成人精品视频免费| 亚洲欧美日韩视频二区| 激情综合视频| 亚洲永久精品国产| 在线视频成人| 欧美一区国产在线| 91久久线看在观草草青青| 香蕉国产精品偷在线观看不卡| 亚洲国产精品福利| 欧美一区亚洲| 亚洲精品在线观看免费| 久久丁香综合五月国产三级网站| 亚洲欧洲综合| 久久亚洲影院| 亚洲自拍偷拍网址| 欧美国产视频在线观看| 午夜精品在线视频| 欧美日韩国产另类不卡| 久久不射中文字幕| 国产精品黄色| 日韩视频在线观看一区二区| 国内精品久久久久久久果冻传媒| 亚洲综合色自拍一区| 亚洲区第一页| 麻豆91精品|