成人性生交大片免费看视频r_亚洲综合极品香蕉久久网_在线视频免费观看一区_亚洲精品亚洲人成人网在线播放_国产精品毛片av_久久久久国产精品www_亚洲国产一区二区三区在线播_日韩一区二区三区四区区区_亚洲精品国产无套在线观_国产免费www

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

Android的AlertDialog詳解

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

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

[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)方法來實現(xiàn)類似ListView的AlertDialog
第一個參數(shù)是要顯示的數(shù)據(jù)的數(shù)組,第二個參數(shù)是點擊某個item的觸發(fā)事件

[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)方法來實現(xiàn)類似RadioButton的AlertDialog
第一個參數(shù)是要顯示的數(shù)據(jù)的數(shù)組,第二個參數(shù)是初始值(初始被選中的item),第三個參數(shù)是點擊某個item的觸發(fā)事件
在這個例子里面我們設了一個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)方法來實現(xiàn)類似CheckBox的AlertDialog
第一個參數(shù)是要顯示的數(shù)據(jù)的數(shù)組,第二個參數(shù)是選中狀態(tài)的數(shù)組,第三個參數(shù)是點擊某個item的觸發(fā)事件

[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
有時候我們不能滿足系統(tǒng)自帶的AlertDialog風格,就比如說我們要實現(xiàn)一個Login畫面,有用戶名和密碼,這時我們就要用到自定義View的AlertDialog
先創(chuàng)建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();
 }
}運行結果如下:
 
摘自 殤雲(yún)的專欄

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

巨人網(wǎng)絡通訊聲明:本文標題《Android的AlertDialog詳解》,本文關鍵詞  Android,的,AlertDialog,詳解,;如發(fā)現(xiàn)本文內(nèi)容存在版權問題,煩請?zhí)峁┫嚓P信息告之我們,我們將及時溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡,涉及言論、版權與本站無關。
  • 相關文章
  • 下面列出與本文章《Android的AlertDialog詳解》相關的同類信息!
  • 本頁收集關于Android的AlertDialog詳解的相關信息資訊供網(wǎng)民參考!
  • 推薦文章
    av在线成人| 国内偷自视频区视频综合| 免费一级淫片| 久久久久999| 国产精品一区二区久激情瑜伽| 国产精品视频yy9099| 国产成人禁片免费观看| 99精品国产一区二区| 免费久久久久久久久| 三级黄色录像视频| 日韩精品视频在线免费观看| 亚洲精品97久久久babes| 亚洲欧洲日韩av| 国产片在线播放| 毛片av免费观看| 亚洲精品国产91| 久久亚洲国产成人精品性色| 欧美三级黄视频| 免费在线黄网站| 成人性生交大片免费看在线播放| av亚洲产国偷v产偷v自拍| 国产一区二区波多野结衣| www.98色噜噜噜| 日韩精品人妻中文字幕有码| 人妻换人妻a片爽麻豆| 精品久久久久久久| 精品国产成人系列| 澳门久久精品| 欧美日韩人人澡狠狠躁视频| 欧美电影《睫毛膏》| 91精品免费久久久久久久久| 日日噜噜夜夜狠狠视频| 国产欧美一区二区三区米奇| 婷婷五月在线视频| 一本色道久久综合狠狠躁篇的优点| 精品国产一区二区三区麻豆免费观看完整版| 欧美一级色片| 人人爱人人干婷婷丁香亚洲| 午夜免费播放观看在线视频| 精品一区二区国语对白| 精品人妻一区二区三区三区四区| 免费影院在线观看一区| 3p乱日视频| 欧美日韩亚洲另类| frxxee中国xxx麻豆hd| 日韩在线观看精品| 成人v精品蜜桃久久一区| 九九久久九九| 国产一区福利视频| 全免费一级毛片免费看| 特大巨黑人吊性xxxxn38| 中文字幕中文字幕中文字幕亚洲无线| 国产成人一区二区三区影院在线| 国产一区二区三区自拍| 美女亚洲精品| 国产精品激情自拍| 久久久久国产精品午夜一区| 天天超碰亚洲| 性欧美高清come| 一级在线免费视频| 午夜视频在线观看一区二区| 久久久久久久久中文字幕| 久久久久久av无码免费看大片| 在线观看日韩精品| 在线免费视频一区| 欧美日韩三级视频| 日韩亚洲国产中文字幕欧美| 久久精品网站视频| 日韩欧美在线观看视频| 国产视频一区二区在线播放| 免费的av网址| 97看剧电视剧大全| 亚洲人a成www在线影院| 日韩精品免费一区二区| 国产成人午夜性a一级毛片| 亚洲黄色片视频| 成人av激情人伦小说| 国产91免费视频| 狠狠色噜噜狠狠狠狠色吗综合| 婷婷激情五月网| 国产日产精品一区二区三区四区| 久久久久久综合| 日日夜夜精品一区| 国产成人精品亚洲日本在线桃色| 男女视频在线观看| 国内精品免费午夜毛片| 成人av一区二区三区| 黄色三级视屏| 99久久99久久精品国产片桃花| 黄色网页网址在线免费| 亚洲人一二三区| 欧美伦理影院| 中文字幕亚洲精品乱码| 国产在线不卡视频| 美女mm1313爽爽久久久蜜臀| 黄色aaa毛片| 亚洲午夜精品在线观看| 亚洲综合在线免费观看| 国产ts在线播放| 网友自拍亚洲| 欧美国产在线看| 国产精品免费无码| 国产青青视频| 中国老太性bbbxxxx| 国产91高潮流白浆在线麻豆| 欧日韩在线观看| segui88久久综合| 国产专区在线视频| 中文字幕1区2区| 99国产精品久久久久久久久久| 色黄网站在线观看| 久久亚洲精品欧美| 善良的小姨在线| 国产人成网在线播放va免费| 久久婷婷五月综合色国产香蕉| 在线国产欧美| 亚洲精品人人| 91在线精品观看| 精品久久久久香蕉网| 蜜桃视频在线观看一区二区| 99久久人爽人人添人人澡| 一区二区三区在线播放欧美| 在线电影av不卡网址| 国产视频二区三区| 日本人妻熟妇久久久久久| 97在线观看免费视频| 欧美性极品videosbest| 国产精品45p| 蜜桃av在线免费观看| 老熟妇一区二区| 欧美色爱综合网| 国产精品久久77777| 国内视频在线精品| 免费一级在线观看| 在线看片福利| 欧美三级在线播放| 亚洲国产精品人人做人人爽| 操人视频免费看| 香蕉精品999视频一区二区| 一级片在线免费观看视频| 国产一区二区三区成人欧美日韩在线观看| 久草在现在线| 黄色日本网站| 国产精品vvv| 另类图片第一页| 国产sm调教视频| 在线看的毛片| 六月丁香婷婷色狠狠久久| sese在线播放| 日韩一区二区不卡视频| 蜜臀aⅴ国产精品久久久国产老师| 国产精品入口免费视频一| 精品国产自在精品国产浪潮| 99久久国产综合精品五月天喷水| 在线播放网站| 精品捆绑美女sm三区| ww国产内射精品后入国产| 免费人成短视频在线观看网站| 亚洲成人电视网| 欧美高清影院| 成年人网站大全| 污黄色在线观看| 日本成人精品| 成人在线观看视频app| 国产欧美一区二区三区小说| 性欧美大战久久久久久久| 在线观看免费黄色网址| 一区二区三区免费在线看| 日韩图片一区| 精品一区二区三区在线成人| 99久久久久久久久久| 超碰精品在线观看| 亚洲在线观看一区| 新版中文字幕在线资源| 国产精品99| 九九爱精品视频| 久久精品电影网| 91丝袜呻吟高潮美腿白嫩在线观看| 美女做暖暖视频免费在线观看全部网址91| 999在线观看精品免费不卡网站| 久久久久久久午夜| 怡红院av久久久久久久| 97在线视频一区| www毛片com| 色妞久久福利网| yjizz国产| 日韩在线看片| aa国产精品| 色在线观看视频| 亚洲国产日韩在线一区模特| 午夜不卡在线视频| 成人久久视频在线观看| 影音先锋导航| 久草在线在线视频| 91精品国产欧美一区二区18| 操操操com| 亚洲黄色在线视频| 欧美俄罗斯乱妇| 一级特黄录像免费播放全99| 欧美成人在线影院| 欧美日韩成人网| 91国产丝袜播放在线| 久久99亚洲热视| www.av视频在线观看| 欧美激情一区二区三区在线| 欧美福利视频导航| 亚洲mm色国产网站| 精品久久久无码人妻字幂| 日韩在线视频第一页| 中文字幕一区二区三区四区欧美| 免费一级全黄少妇性色生活片| 成人自拍性视频| 欧美高清自拍一区| 91九色蝌蚪视频| 精品国内片67194| 激情一区二区| 天堂8中文在线最新版在线| 男女超爽视频免费播放| 黄色小网站91| 国产日韩中文在线中文字幕| 欧美a一区二区| 在线视频观看日韩| 亚洲自拍欧美色图| videoxxxx另类日本极品| 日韩欧美成人一区二区三区| 97超碰在线资源站| 日韩在线视频免费观看| 成人美女免费网站视频| 美腿丝袜亚洲一区| 中文字幕精品—区二区| 欧美高清一区二区| 色999日韩自偷自拍美女| 午夜精品久久久久99蜜桃最新版| 625成人欧美午夜电影| 在线播放麻豆| 人人干人人干人人干| 国产精品极品美女粉嫩高清在线| a毛片在线看免费观看| 精品福利一区二区三区免费视频| 日韩一区二区三区电影| 成人资源www网在线最新版| 黑人与亚洲人色ⅹvideos| 成人精品一区二区三区中文字幕| 黑人狂躁日本娇小| 黄色片网站在线| 精品一区二区三区中文字幕视频| 国产精品久久久久久久精| 少妇一区视频| 污视频在线播放| 亚洲国产一二三精品无码| 亚洲国产精彩中文乱码av| 国产黄色一级片| 夜夜操 天天操| 日韩精品视频在线观看免费| 欧日韩在线观看| 亚洲精品一区二区久| 美女午夜精品| 免费观看av网站| 艳妇臀荡乳欲伦亚洲一区| 国产亚洲一区二区三区在线播放| 欧美精品久久一区| 成人午夜激情免费视频| 久久黄色一级视频| 欧美xxxx精品| 91在线视频网址| 美女视频免费观看网站在线| 中文字幕有码热在线视频| 午夜精品久久久久久久99热浪潮| 成人羞羞网站入口| 国产美女精品久久久| 欧美—级在线免费片| 91天天综合| 男女免费观看在线爽爽爽视频| 免费看91视频| 久久av资源站| 97在线播放免费观看| 欧美aaa级片| 国产精品一二| 77777少妇光屁股久久一区| 国产欧美日韩综合一区在线观看| 国产电影一区| 在线看日本不卡| 五月天视频在线观看| 欧美一二三区| 中文字幕av一区二区三区谷原希美| 国产精品色在线观看| 亚洲欧美日韩一区成人| 91精品国产一区二区| 欧美高清视频不卡网| 成人白浆超碰人人人人| 欧美视频一区二区在线观看| 亚洲精品一区二区三区网址| 6080午夜不卡| 三级成人黄色影院| 国产成人精彩在线视频九色| 日韩av在线中文字幕| 国产aⅴ超薄肉色丝袜交足| 午夜久久久久久久久久| 日韩综合av| 中国黄色a级片| 欧美日韩成人激情| 亚洲成人免费影院| 国产视频你懂的| 两个人日本在线观看视频| 秘密影院久久综合亚洲综合| 欧美一区欧美二区| 在线国产福利网站| 成人小电影网站| 亚洲国产日韩欧美在线| 91gao视频| 国产日本韩国在线播放| 岛国最新视频免费在线观看| 哺乳一区二区三区中文视频| 在线观看爽视频| 成人影院网站ww555久久精品| 久久视频精品在线| 亚洲成人天堂网| 久久国产66| 国产成人精品亚洲精品色欲| 精品婷婷色一区二区三区蜜桃| 日韩一级视频在线观看| 男女啪啪无遮挡| 九色视频网站| 少妇精品久久久| 色在线视频观看| 国产午夜精品全部视频在线播放| 日韩欧美中文字幕公布| 中国精品18videos性欧美|