校园春色亚洲色图_亚洲视频分类_中文字幕精品一区二区精品_麻豆一区区三区四区产品精品蜜桃

主頁 > 知識庫 > Android的AlertDialog詳解

Android的AlertDialog詳解

熱門標簽:蘭州智能語音電銷機器人功能 江蘇客服外呼系統排名 外呼crm系統是什么 東莞小型外呼系統招商 360地圖標注位置 蘇州園區地圖標注 宜賓穩定外呼系統廠家 百度地圖標注中心api 興隆縣地圖標注app
AlertDialog的構造方法全部是Protected的,所以不能直接通過new一個AlertDialog來創建出一個AlertDialog。
要創建一個AlertDialog,就要用到AlertDialog.Builder中的create()方法。
使用AlertDialog.Builder創建對話框需要了解以下幾個方法:
setTitle :為對話框設置標題
setIcon :為對話框設置圖標
setMessage:為對話框設置內容
setView : 給對話框設置自定義樣式
setItems :設置對話框要顯示的一個list,一般用于顯示幾個命令時
setMultiChoiceItems :用來設置對話框顯示一系列的復選框
setNeutralButton    :普通按鈕
setPositiveButton   :給對話框添加"Yes"按鈕
setNegativeButton :對話框添加"No"按鈕
create : 創建對話框
show :顯示對話框
一、簡單的AlertDialog
下面,創建一個簡單的ALertDialog并顯示它:

[java]  package com.tianjf; 
 
import android.app.Activity; 
import android.app.AlertDialog; 
import android.app.Dialog; 
import android.os.Bundle; 
 
public class Dialog_AlertDialogDemoActivity extends Activity { 
    /** Called when the activity is first created. */ 
    @Override 
    public void onCreate(Bundle savedInstanceState) { 
        super.onCreate(savedInstanceState); 
        setContentView(R.layout.main); 
 
        Dialog alertDialog = new AlertDialog.Builder(this). 
                setTitle("對話框的標題"). 
                setMessage("對話框的內容"). 
                setIcon(R.drawable.ic_launcher). 
                create(); 
        alertDialog.show(); 
    } 

package com.tianjf;
import android.app.Activity;
import android.app.AlertDialog;
import android.app.Dialog;
import android.os.Bundle;
public class Dialog_AlertDialogDemoActivity extends Activity {
 /** Called when the activity is first created. */
 @Override
 public void onCreate(Bundle savedInstanceState) {
  super.onCreate(savedInstanceState);
  setContentView(R.layout.main);
  Dialog alertDialog = new AlertDialog.Builder(this).
    setTitle("對話框的標題").
    setMessage("對話框的內容").
    setIcon(R.drawable.ic_launcher).
    create();
  alertDialog.show();
 }
}運行結果如下:
 
 

二、帶按鈕的AlertDialog
上面的例子很簡單,下面我們在這個AlertDialog上面加幾個Button,實現刪除操作的提示對話框

[java] package com.tianjf; 
 
import android.app.Activity; 
import android.app.AlertDialog; 
import android.app.Dialog; 
import android.content.DialogInterface; 
import android.os.Bundle; 
 
public class Dialog_AlertDialogDemoActivity extends Activity { 
    /** Called when the activity is first created. */ 
    @Override 
    public void onCreate(Bundle savedInstanceState) { 
        super.onCreate(savedInstanceState); 
        setContentView(R.layout.main); 
 
        Dialog alertDialog = new AlertDialog.Builder(this). 
                setTitle("確定刪除?"). 
                setMessage("您確定刪除該條信息嗎?"). 
                setIcon(R.drawable.ic_launcher). 
                setPositiveButton("確定", new DialogInterface.OnClickListener() { 
                     
                    @Override 
                    public void onClick(DialogInterface dialog, int which) { 
                        // TODO Auto-generated method stub  
                    } 
                }). 
                setNegativeButton("取消", new DialogInterface.OnClickListener() { 
                     
                    @Override 
                    public void onClick(DialogInterface dialog, int which) { 
                        // TODO Auto-generated method stub  
                    } 
                }). 
                setNeutralButton("查看詳情", new DialogInterface.OnClickListener() { 
                     
                    @Override 
                    public void onClick(DialogInterface dialog, int which) { 
                        // TODO Auto-generated method stub  
                    } 
                }). 
                create(); 
        alertDialog.show(); 
    } 

package com.tianjf;
import android.app.Activity;
import android.app.AlertDialog;
import android.app.Dialog;
import android.content.DialogInterface;
import android.os.Bundle;
public class Dialog_AlertDialogDemoActivity extends Activity {
 /** Called when the activity is first created. */
 @Override
 public void onCreate(Bundle savedInstanceState) {
  super.onCreate(savedInstanceState);
  setContentView(R.layout.main);
  Dialog alertDialog = new AlertDialog.Builder(this).
    setTitle("確定刪除?").
    setMessage("您確定刪除該條信息嗎?").
    setIcon(R.drawable.ic_launcher).
    setPositiveButton("確定", new DialogInterface.OnClickListener() {
     
     @Override
     public void onClick(DialogInterface dialog, int which) {
      // TODO Auto-generated method stub
     }
    }).
    setNegativeButton("取消", new DialogInterface.OnClickListener() {
     
     @Override
     public void onClick(DialogInterface dialog, int which) {
      // TODO Auto-generated method stub
     }
    }).
    setNeutralButton("查看詳情", new DialogInterface.OnClickListener() {
     
     @Override
     public void onClick(DialogInterface dialog, int which) {
      // TODO Auto-generated method stub
     }
    }).
    create();
  alertDialog.show();
 }
}在這個例子中,我們定義了三個按鈕,分別是"Yes"按鈕,"No"按鈕以及一個普通按鈕,每個按鈕都有onClick事件,TODO的地方可以放點了按鈕之后想要做的一些處理
看一下運行結果:
 

可以看到三個按鈕添加到了AlertDialog上,三個沒有添加事件處理的按鈕,點了只是關閉對話框,沒有任何其他操作。
 
 
 
三、類似ListView的AlertDialog
用setItems(CharSequence[] items, final OnClickListener listener)方法來實現類似ListView的AlertDialog
第一個參數是要顯示的數據的數組,第二個參數是點擊某個item的觸發事件

[java] package com.tianjf; 
 
import android.app.Activity; 
import android.app.AlertDialog; 
import android.app.Dialog; 
import android.content.DialogInterface; 
import android.os.Bundle; 
import android.widget.Toast; 
 
public class Dialog_AlertDialogDemoActivity extends Activity { 
    /** Called when the activity is first created. */ 
    @Override 
    public void onCreate(Bundle savedInstanceState) { 
        super.onCreate(savedInstanceState); 
        setContentView(R.layout.main); 
 
        final String[] arrayFruit = new String[] { "蘋果", "橘子", "草莓", "香蕉" }; 
 
        Dialog alertDialog = new AlertDialog.Builder(this). 
                setTitle("你喜歡吃哪種水果?"). 
                setIcon(R.drawable.ic_launcher) 
                .setItems(arrayFruit, new DialogInterface.OnClickListener() { 
  
                    @Override 
                    public void onClick(DialogInterface dialog, int which) { 
                        Toast.makeText(Dialog_AlertDialogDemoActivity.this, arrayFruit[which], Toast.LENGTH_SHORT).show(); 
                    } 
                }). 
                setNegativeButton("取消", new DialogInterface.OnClickListener() { 
 
                    @Override 
                    public void onClick(DialogInterface dialog, int which) { 
                        // TODO Auto-generated method stub  
                    } 
                }). 
                create(); 
        alertDialog.show(); 
    } 

package com.tianjf;
import android.app.Activity;
import android.app.AlertDialog;
import android.app.Dialog;
import android.content.DialogInterface;
import android.os.Bundle;
import android.widget.Toast;
public class Dialog_AlertDialogDemoActivity extends Activity {
 /** Called when the activity is first created. */
 @Override
 public void onCreate(Bundle savedInstanceState) {
  super.onCreate(savedInstanceState);
  setContentView(R.layout.main);
  final String[] arrayFruit = new String[] { "蘋果", "橘子", "草莓", "香蕉" };
  Dialog alertDialog = new AlertDialog.Builder(this).
    setTitle("你喜歡吃哪種水果?").
    setIcon(R.drawable.ic_launcher)
    .setItems(arrayFruit, new DialogInterface.OnClickListener() {
 
     @Override
     public void onClick(DialogInterface dialog, int which) {
      Toast.makeText(Dialog_AlertDialogDemoActivity.this, arrayFruit[which], Toast.LENGTH_SHORT).show();
     }
    }).
    setNegativeButton("取消", new DialogInterface.OnClickListener() {
     @Override
     public void onClick(DialogInterface dialog, int which) {
      // TODO Auto-generated method stub
     }
    }).
    create();
  alertDialog.show();
 }
}運行結果如下:
 
 
 
 
四、類似RadioButton的AlertDialog
用setSingleChoiceItems(CharSequence[] items, int checkedItem, final OnClickListener listener)方法來實現類似RadioButton的AlertDialog
第一個參數是要顯示的數據的數組,第二個參數是初始值(初始被選中的item),第三個參數是點擊某個item的觸發事件
在這個例子里面我們設了一個selectedFruitIndex用來記住選中的item的index

[java] package com.tianjf; 
 
import android.app.Activity; 
import android.app.AlertDialog; 
import android.app.Dialog; 
import android.content.DialogInterface; 
import android.os.Bundle; 
import android.widget.Toast; 
 
public class Dialog_AlertDialogDemoActivity extends Activity { 
     
    private int selectedFruitIndex = 0; 
     
    /** Called when the activity is first created. */ 
    @Override 
    public void onCreate(Bundle savedInstanceState) { 
        super.onCreate(savedInstanceState); 
        setContentView(R.layout.main); 
 
        final String[] arrayFruit = new String[] { "蘋果", "橘子", "草莓", "香蕉" }; 
 
        Dialog alertDialog = new AlertDialog.Builder(this). 
                setTitle("你喜歡吃哪種水果?"). 
                setIcon(R.drawable.ic_launcher) 
                .setSingleChoiceItems(arrayFruit, 0, new DialogInterface.OnClickListener() { 
  
                    @Override 
                    public void onClick(DialogInterface dialog, int which) { 
                        selectedFruitIndex = which; 
                    } 
                }). 
                setPositiveButton("確認", new DialogInterface.OnClickListener() { 
 
                    @Override 
                    public void onClick(DialogInterface dialog, int which) { 
                        Toast.makeText(Dialog_AlertDialogDemoActivity.this, arrayFruit[selectedFruitIndex], Toast.LENGTH_SHORT).show(); 
                    } 
                }). 
                setNegativeButton("取消", new DialogInterface.OnClickListener() { 
 
                    @Override 
                    public void onClick(DialogInterface dialog, int which) { 
                        // TODO Auto-generated method stub  
                    } 
                }). 
                create(); 
        alertDialog.show(); 
    } 

package com.tianjf;
import android.app.Activity;
import android.app.AlertDialog;
import android.app.Dialog;
import android.content.DialogInterface;
import android.os.Bundle;
import android.widget.Toast;
public class Dialog_AlertDialogDemoActivity extends Activity {
 
 private int selectedFruitIndex = 0;
 
 /** Called when the activity is first created. */
 @Override
 public void onCreate(Bundle savedInstanceState) {
  super.onCreate(savedInstanceState);
  setContentView(R.layout.main);
  final String[] arrayFruit = new String[] { "蘋果", "橘子", "草莓", "香蕉" };
  Dialog alertDialog = new AlertDialog.Builder(this).
    setTitle("你喜歡吃哪種水果?").
    setIcon(R.drawable.ic_launcher)
    .setSingleChoiceItems(arrayFruit, 0, new DialogInterface.OnClickListener() {
 
     @Override
     public void onClick(DialogInterface dialog, int which) {
      selectedFruitIndex = which;
     }
    }).
    setPositiveButton("確認", new DialogInterface.OnClickListener() {
     @Override
     public void onClick(DialogInterface dialog, int which) {
      Toast.makeText(Dialog_AlertDialogDemoActivity.this, arrayFruit[selectedFruitIndex], Toast.LENGTH_SHORT).show();
     }
    }).
    setNegativeButton("取消", new DialogInterface.OnClickListener() {
     @Override
     public void onClick(DialogInterface dialog, int which) {
      // TODO Auto-generated method stub
     }
    }).
    create();
  alertDialog.show();
 }
}
運行結果如下:
 
 

五、類似CheckBox的AlertDialog
用setMultiChoiceItems(CharSequence[] items, boolean[] checkedItems, final OnMultiChoiceClickListener listener)方法來實現類似CheckBox的AlertDialog
第一個參數是要顯示的數據的數組,第二個參數是選中狀態的數組,第三個參數是點擊某個item的觸發事件

[java] package com.tianjf; 
 
import android.app.Activity; 
import android.app.AlertDialog; 
import android.app.Dialog; 
import android.content.DialogInterface; 
import android.os.Bundle; 
import android.widget.Toast; 
 
public class Dialog_AlertDialogDemoActivity extends Activity { 
    /** Called when the activity is first created. */ 
    @Override 
    public void onCreate(Bundle savedInstanceState) { 
        super.onCreate(savedInstanceState); 
        setContentView(R.layout.main); 
 
        final String[] arrayFruit = new String[] { "蘋果", "橘子", "草莓", "香蕉" }; 
        final boolean[] arrayFruitSelected = new boolean[] {true, true, false, false}; 
 
        Dialog alertDialog = new AlertDialog.Builder(this). 
                setTitle("你喜歡吃哪種水果?"). 
                setIcon(R.drawable.ic_launcher) 
                .setMultiChoiceItems(arrayFruit, arrayFruitSelected, new DialogInterface.OnMultiChoiceClickListener() { 
                     
                    @Override 
                    public void onClick(DialogInterface dialog, int which, boolean isChecked) { 
                        arrayFruitSelected[which] = isChecked; 
                    } 
                }). 
                setPositiveButton("確認", new DialogInterface.OnClickListener() { 
 
                    @Override 
                    public void onClick(DialogInterface dialog, int which) { 
                        StringBuilder stringBuilder = new StringBuilder(); 
                        for (int i = 0; i arrayFruitSelected.length; i++) { 
                            if (arrayFruitSelected[i] == true) 
                            { 
                                stringBuilder.append(arrayFruit[i] + "、"); 
                            } 
                        } 
                        Toast.makeText(Dialog_AlertDialogDemoActivity.this, stringBuilder.toString(), Toast.LENGTH_SHORT).show(); 
                    } 
                }). 
                setNegativeButton("取消", new DialogInterface.OnClickListener() { 
 
                    @Override 
                    public void onClick(DialogInterface dialog, int which) { 
                        // TODO Auto-generated method stub  
                    } 
                }). 
                create(); 
        alertDialog.show(); 
    } 

package com.tianjf;
import android.app.Activity;
import android.app.AlertDialog;
import android.app.Dialog;
import android.content.DialogInterface;
import android.os.Bundle;
import android.widget.Toast;
public class Dialog_AlertDialogDemoActivity extends Activity {
 /** Called when the activity is first created. */
 @Override
 public void onCreate(Bundle savedInstanceState) {
  super.onCreate(savedInstanceState);
  setContentView(R.layout.main);
  final String[] arrayFruit = new String[] { "蘋果", "橘子", "草莓", "香蕉" };
  final boolean[] arrayFruitSelected = new boolean[] {true, true, false, false};
  Dialog alertDialog = new AlertDialog.Builder(this).
    setTitle("你喜歡吃哪種水果?").
    setIcon(R.drawable.ic_launcher)
    .setMultiChoiceItems(arrayFruit, arrayFruitSelected, new DialogInterface.OnMultiChoiceClickListener() {
     
     @Override
     public void onClick(DialogInterface dialog, int which, boolean isChecked) {
      arrayFruitSelected[which] = isChecked;
     }
    }).
    setPositiveButton("確認", new DialogInterface.OnClickListener() {
     @Override
     public void onClick(DialogInterface dialog, int which) {
      StringBuilder stringBuilder = new StringBuilder();
      for (int i = 0; i arrayFruitSelected.length; i++) {
       if (arrayFruitSelected[i] == true)
       {
        stringBuilder.append(arrayFruit[i] + "、");
       }
      }
      Toast.makeText(Dialog_AlertDialogDemoActivity.this, stringBuilder.toString(), Toast.LENGTH_SHORT).show();
     }
    }).
    setNegativeButton("取消", new DialogInterface.OnClickListener() {
     @Override
     public void onClick(DialogInterface dialog, int which) {
      // TODO Auto-generated method stub
     }
    }).
    create();
  alertDialog.show();
 }
}運行結果如下:
 
 
 
六、自定義View的AlertDialog
有時候我們不能滿足系統自帶的AlertDialog風格,就比如說我們要實現一個Login畫面,有用戶名和密碼,這時我們就要用到自定義View的AlertDialog
先創建Login畫面的布局文件
[html] ?xml version="1.0" encoding="utf-8"?> 
LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
    android:layout_width="fill_parent" 
    android:layout_height="fill_parent" 
    android:orientation="vertical" > 
 
    LinearLayout 
        android:layout_width="fill_parent" 
        android:layout_height="wrap_content" 
        android:gravity="center" > 
 
        TextView 
            android:layout_width="0dip" 
            android:layout_height="wrap_content" 
            android:layout_weight="1" 
            android:text="@string/user" /> 
 
        EditText 
            android:layout_width="0dip" 
            android:layout_height="wrap_content" 
            android:layout_weight="1" /> 
    /LinearLayout> 
 
    LinearLayout 
        android:layout_width="fill_parent" 
        android:layout_height="wrap_content" 
        android:gravity="center" > 
 
        TextView 
            android:layout_width="0dip" 
            android:layout_height="wrap_content" 
            android:layout_weight="1" 
            android:text="@string/passward" /> 
 
        EditText 
            android:layout_width="0dip" 
            android:layout_height="wrap_content" 
            android:layout_weight="1" /> 
    /LinearLayout> 
 
/LinearLayout> 
?xml version="1.0" encoding="utf-8"?>
LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical" >
    LinearLayout
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:gravity="center" >
        TextView
            android:layout_width="0dip"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:text="@string/user" />
        EditText
            android:layout_width="0dip"
            android:layout_height="wrap_content"
            android:layout_weight="1" />
    /LinearLayout>
    LinearLayout
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:gravity="center" >
        TextView
            android:layout_width="0dip"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:text="@string/passward" />
        EditText
            android:layout_width="0dip"
            android:layout_height="wrap_content"
            android:layout_weight="1" />
    /LinearLayout>
/LinearLayout>
然后在Activity里面把Login畫面的布局文件添加到AlertDialog上
[java] package com.tianjf; 
 
import android.app.Activity; 
import android.app.AlertDialog; 
import android.app.Dialog; 
import android.content.DialogInterface; 
import android.os.Bundle; 
import android.view.LayoutInflater; 
import android.view.View; 
 
public class Dialog_AlertDialogDemoActivity extends Activity { 
    /** Called when the activity is first created. */ 
    @Override 
    public void onCreate(Bundle savedInstanceState) { 
        super.onCreate(savedInstanceState); 
        setContentView(R.layout.main); 
 
        // 取得自定義View  
        LayoutInflater layoutInflater = LayoutInflater.from(this); 
        View myLoginView = layoutInflater.inflate(R.layout.login, null); 
         
        Dialog alertDialog = new AlertDialog.Builder(this). 
                setTitle("用戶登錄"). 
                setIcon(R.drawable.ic_launcher). 
                setView(myLoginView). 
                setPositiveButton("登錄", new DialogInterface.OnClickListener() { 
 
                    @Override 
                    public void onClick(DialogInterface dialog, int which) { 
                        // TODO Auto-generated method stub  
                    } 
                }). 
                setNegativeButton("取消", new DialogInterface.OnClickListener() { 
 
                    @Override 
                    public void onClick(DialogInterface dialog, int which) { 
                        // TODO Auto-generated method stub  
                    } 
                }). 
                create(); 
        alertDialog.show(); 
    } 

package com.tianjf;
import android.app.Activity;
import android.app.AlertDialog;
import android.app.Dialog;
import android.content.DialogInterface;
import android.os.Bundle;
import android.view.LayoutInflater;
import android.view.View;
public class Dialog_AlertDialogDemoActivity extends Activity {
 /** Called when the activity is first created. */
 @Override
 public void onCreate(Bundle savedInstanceState) {
  super.onCreate(savedInstanceState);
  setContentView(R.layout.main);
  // 取得自定義View
  LayoutInflater layoutInflater = LayoutInflater.from(this);
  View myLoginView = layoutInflater.inflate(R.layout.login, null);
  
  Dialog alertDialog = new AlertDialog.Builder(this).
    setTitle("用戶登錄").
    setIcon(R.drawable.ic_launcher).
    setView(myLoginView).
    setPositiveButton("登錄", new DialogInterface.OnClickListener() {
     @Override
     public void onClick(DialogInterface dialog, int which) {
      // TODO Auto-generated method stub
     }
    }).
    setNegativeButton("取消", new DialogInterface.OnClickListener() {
     @Override
     public void onClick(DialogInterface dialog, int which) {
      // TODO Auto-generated method stub
     }
    }).
    create();
  alertDialog.show();
 }
}運行結果如下:
 
摘自 殤雲的專欄

標簽:嘉興 無錫 蘇州 四川 朝陽 烏魯木齊 雞西 商洛

巨人網絡通訊聲明:本文標題《Android的AlertDialog詳解》,本文關鍵詞  Android,的,AlertDialog,詳解,;如發現本文內容存在版權問題,煩請提供相關信息告之我們,我們將及時溝通與處理。本站內容系統采集于網絡,涉及言論、版權與本站無關。
  • 相關文章
  • 下面列出與本文章《Android的AlertDialog詳解》相關的同類信息!
  • 本頁收集關于Android的AlertDialog詳解的相關信息資訊供網民參考!
  • 推薦文章
    校园春色亚洲色图_亚洲视频分类_中文字幕精品一区二区精品_麻豆一区区三区四区产品精品蜜桃
    欧美亚洲高清一区| 国产成人精品免费一区二区| 亚洲成人精品影院| 欧美性xxxxxxxx| 亚洲一区二区三区四区五区中文| 亚洲精品高清视频在线观看| 欧美性受xxxx黑人xyx| 一区二区三区久久| 4438x亚洲最大成人网| 精品亚洲成av人在线观看| 久久久精品蜜桃| av网站免费线看精品| 国产精品久久久久aaaa樱花| 91美女视频网站| 精品国产一区二区三区久久久蜜月 | 青娱乐精品视频在线| 欧美tickle裸体挠脚心vk| 加勒比av一区二区| 久久久久久久av麻豆果冻| 成人在线综合网| 一区二区三区在线免费观看| 欧美成人免费网站| 色嗨嗨av一区二区三区| 日韩黄色免费电影| 久久久99久久| 欧美吻胸吃奶大尺度电影| 六月婷婷色综合| 国产精品久久久久国产精品日日| 99re视频这里只有精品| 日本va欧美va精品发布| 亚洲精品国产视频| 欧美一区二区观看视频| 成人黄色777网| 免费看日韩a级影片| 亚洲精选免费视频| 国产精品色哟哟网站| 欧美一区二视频| 欧美日韩一级二级| 91在线观看美女| 国产成人免费视频| 久久成人麻豆午夜电影| 亚洲一区av在线| 亚洲欧美综合色| 国产日产亚洲精品系列| 国产性天天综合网| 日韩精品自拍偷拍| 欧美日韩国产系列| 91福利资源站| 色乱码一区二区三区88| 懂色av一区二区三区蜜臀| 紧缚捆绑精品一区二区| 久久精品国产一区二区三区免费看| 亚洲精品国久久99热| 一区二区三区欧美日韩| 国产精品久久综合| 欧美国产激情二区三区 | 欧美三级电影在线看| 一本大道av伊人久久综合| jlzzjlzz欧美大全| 国产91丝袜在线18| 97se亚洲国产综合自在线不卡| 国产一区二区在线观看视频| 久久av老司机精品网站导航| 国产一区二区91| 国产成+人+日韩+欧美+亚洲| 国产精品18久久久久久久久 | 国产精品久久久久久久久免费桃花| 欧美tickling挠脚心丨vk| 日韩免费观看高清完整版| 日韩精品影音先锋| 久久久久97国产精华液好用吗| 国产日韩视频一区二区三区| 日本一区二区三级电影在线观看| 国产精品国产三级国产aⅴ入口| 国产精品激情偷乱一区二区∴| 一区视频在线播放| 一区二区三区免费网站| 日韩—二三区免费观看av| 美女免费视频一区| 国产91色综合久久免费分享| 在线精品视频免费播放| 日韩欧美视频一区| 日本一区二区免费在线观看视频| 亚洲乱码国产乱码精品精可以看| 亚洲午夜精品网| 韩国精品免费视频| 99久久精品国产网站| 欧美日韩高清在线播放| 久久久久久久久久看片| 国产精品卡一卡二卡三| 日日噜噜夜夜狠狠视频欧美人| 国产精品一二二区| 在线免费观看日本欧美| 日韩久久免费av| 亚洲男人的天堂一区二区| 天堂成人免费av电影一区| 国产麻豆精品在线观看| 欧美午夜电影一区| 国产精品免费久久| 日韩有码一区二区三区| av在线不卡网| 日韩一卡二卡三卡国产欧美| 亚洲欧美电影一区二区| 国产一区二区三区日韩 | 日韩欧美国产一二三区| 亚洲人成影院在线观看| 国产一区二区三区久久久| 欧美性大战久久久| 亚洲色图视频免费播放| xnxx国产精品| 日本午夜一区二区| 一本大道久久精品懂色aⅴ| 久久中文娱乐网| 日本vs亚洲vs韩国一区三区二区 | 国产麻豆一精品一av一免费| 欧美性色aⅴ视频一区日韩精品| 久久久精品影视| 日本不卡一区二区| 91久久精品网| 亚洲欧美在线观看| 国产精品66部| 精品电影一区二区三区| 日韩福利视频网| 69久久99精品久久久久婷婷 | 成人综合日日夜夜| 久久久久久电影| 国产福利一区在线| 欧美韩国一区二区| 国产成人激情av| 中文字幕av免费专区久久| 国产精品77777竹菊影视小说| 欧美电影免费观看高清完整版在线观看| 亚洲一区二区在线免费看| 91福利视频久久久久| 亚洲国产美国国产综合一区二区 | 色天使色偷偷av一区二区| 中文字幕一区二区5566日韩| 成人黄色在线视频| 亚洲美女区一区| 欧美性猛交xxxxxxxx| 天天综合网天天综合色| 日韩一区二区免费在线电影| 麻豆久久久久久| 国产日韩欧美电影| 一本一本久久a久久精品综合麻豆 一本一道波多野结衣一区二区 | 亚洲一区免费在线观看| 色综合色狠狠综合色| 亚洲乱码日产精品bd| 欧美色倩网站大全免费| 日本成人在线一区| 国产精品丝袜91| 欧美日韩一区二区三区四区 | 国产清纯美女被跳蛋高潮一区二区久久w| 国产一二精品视频| 国产精品美女一区二区在线观看| 91蜜桃免费观看视频| 亚洲综合无码一区二区| 国产成人午夜精品影院观看视频| 国产精品久久久久三级| 91精品福利在线一区二区三区| 国产在线精品免费av| 亚洲情趣在线观看| 欧美精品久久99久久在免费线 | 91国偷自产一区二区三区成为亚洲经典| 亚洲视频小说图片| 91精品国产91久久综合桃花| 丰满亚洲少妇av| 日韩黄色免费电影| 国产精品成人午夜| 日韩欧美高清一区| 色94色欧美sute亚洲线路二 | 一区二区三区四区高清精品免费观看 | 3atv在线一区二区三区| 国产成人免费9x9x人网站视频| 亚洲精品免费在线| 国产日产欧美精品一区二区三区| 在线观看三级视频欧美| 国产精品香蕉一区二区三区| 亚洲国产日韩精品| 国产精品久久一级| 欧美xxxxxxxxx| 欧美在线观看禁18| www.成人在线| 国产综合久久久久久鬼色| 夜夜揉揉日日人人青青一国产精品| 精品日韩在线观看| 欧美午夜精品久久久| 成人污污视频在线观看| 免费欧美日韩国产三级电影| 亚洲成人第一页| 国产欧美久久久精品影院| 日韩午夜激情av| 在线综合亚洲欧美在线视频| 91麻豆免费看| 99久久免费国产| 成人久久18免费网站麻豆| 久久精品噜噜噜成人88aⅴ| 亚洲一区二区美女| 亚洲成人精品一区二区| 午夜精品福利一区二区三区av|