成人免费xxxxx在线视频软件_久久精品久久久_亚洲国产精品久久久_天天色天天色_亚洲人成一区_欧美一级欧美三级在线观看

如何在你的Android手機上配置 Python 環境?

移動開發 Android 后端
本文旨在講解如何在Android平板或手機上搭建Python開發環境,幫助Python初學者有效利用碎片化時間進行學習,從而達到良好的學習效果。

本文旨在講解如何在Android平板或手機上搭建Python開發環境,幫助Python初學者有效利用碎片化時間進行學習,從而達到良好的學習效果。

對于大部分初學Python的人來說,由于工作、生活等因素常常無法進行連貫、系統的學習。初學者為了利用上下班通勤等碎片化時間進行學習,通常會在平板上觀看學習視頻并做記錄。雖然這種方法很好,但效果還是不如邊學邊練來得好。

因此,你需要的是這個:

不多說,讓我們開始吧!

一、Termux安裝與配置

1. 系統要求

Android 7.0以上的平板或手機。這里建議使用兼顧了便攜性和屏幕尺寸的8寸平板。

2G以上可用空間。由于需要安裝各種軟件包,對存儲空間的消耗還是比較大的。

2. Termux安裝

在安裝Termux前,需要了解一下什么是Termux。

Termux 是一款支持 Linux 環境的 Android 終端模擬器APP。你無需對手機進行root或額外設置即可使用。這款APP會在手機中自動安裝一個最小化基本系統,并支持使用 APT 包管理工具安裝軟件。

目前Termux官網(https://termux.com/)建議使用F-Droid進行安裝,不再支持通過Google Play進行安裝。

主程序Termux下載地址:

  1. https://f-droid.org/repo/com.termux_106.apk 

美化工具Termux:Styling下載地址:

  1. https://f-droid.org/repo/com.termux.styling_29.apk 

3. Termux基本操作

快捷鍵

  • Ctrl + A -> 將光標移動到行首
  • Ctrl + E -> 將光標移動到行尾
  • Ctrl + C -> 中止當前進程
  • Ctrl + D -> 注銷終端會話
  • Ctrl + K -> 從光標刪除到行尾
  • Ctrl + U -> 從光標刪除到行首
  • Ctrl + L -> 清除終端
  • Ctrl + Z -> 掛起(發送SIGTSTP到)當前進程
  • 音量加 + E -> Esc鍵
  • 音量加 + T -> Tab鍵
  • 音量加 + 1 -> F1(音量增加 + 2 → F2…以此類推)
  • 音量加 + 0 -> F10
  • 音量加 + B -> Alt + B,使用readline時返回一個單詞
  • 音量加 + F -> Alt + F,使用readline時轉發一個單詞
  • 音量加 + X -> Alt+X
  • 音量加 + W -> 向上箭頭鍵
  • 音量加 + A -> 向左箭頭鍵
  • 音量加 + S -> 向下箭頭鍵
  • 音量加 + D -> 向右箭頭鍵
  • 音量加 + L -> | (管道字符)
  • 音量加 + H -> 〜(波浪號字符)
  • 音量加 + U -> _ (下劃線字符)
  • 音量加 + P -> 上一頁
  • 音量加 + N -> 下一頁
  • 音量加 + . -> Ctrl + \(SIGQUIT)
  • 音量加 + V -> 顯示音量控制
  • 音量加 + Q -> 切換顯示的功能鍵視
  • 音量加 + K -> 切換顯示的功能鍵視圖

4. 修改軟件源

安裝完Termux后,使用如下命令自動替換官方源為清華鏡像源:

 

  1. sed -i 's@^\(deb.*stable main\)$@#\1\ndeb https://mirrors.tuna.tsinghua.edu.cn/termux/termux-packages-24 stable main@' $PREFIX/etc/apt/sources.list 
  2. sed -i 's@^\(deb.*games stable\)$@#\1\ndeb https://mirrors.tuna.tsinghua.edu.cn/termux/game-packages-24 games stable@' $PREFIX/etc/apt/sources.list.d/game.list 
  3. sed -i 's@^\(deb.*science stable\)$@#\1\ndeb https://mirrors.tuna.tsinghua.edu.cn/termux/science-packages-24 science stable@' $PREFIX/etc/apt/sources.list.d/science.list 
  4. apt update && apt upgrade 

5. 安裝基本組件

在配置Python開發環境前,我們還需要使用如下命令安裝一些基本軟件包:

 

  1. pkg install -y zsh curl wget build-essential 
  2. pkg install -y git python nodejs-lts perl ipython 
  3. pkg install -y neovim lazygit ranger fzf 

二、終端配置

1. Shell配置

安裝oh-my-zsh

Shell的類型有很多種,Termux下默認使用的是bash,這里使用功能更強大的zsh來代替bash。為了讓初學者更好地使用zsh,需要先安裝高檔大氣上檔次,狂拽炫酷吊炸天的oh-my-zsh。

  1. sh -c "$(curl -fsSL https://raw.github.com/ohmyzsh/ohmyzsh/master/tools/install.sh)" 

安裝過程中,會提示是否切換shell為zsh,輸入回車或Y即可。

此外,還需要安裝zsh-autosuggestions插件,用于自動補全:

  1. git clone https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-$HOME/.oh-my-zsh/custom}/plugins/zsh-autosuggestions 

oh-my-zsh需要使用nano、neovim等終端編輯器修改.zshrc文件來進行配置,在plugins部分添加插件支持:

 

  1. plugins=( 
  2.     git 
  3.     python 
  4.     colorize 
  5.     zsh-interactive-cd 
  6.     zsh-navigation-tools 
  7.     zsh-autosuggestions 

2. 主題美化

2.1 配色與字體

長按屏幕,點擊More,選擇Style可以選擇配色和字體,推薦使用Neon配色和JetBrains Mono字體,也可以通過修改~/.termux/目錄下的colors.properties和font.ttf文件進行自定義。

2.2 主題配置

接下來安裝powerlevel10k的主題:

安裝

輸入如下命令下載powerlevel10k:

  1. git clone --depth=1 https://gitee.com/romkatv/powerlevel10k.git ${ZSH_CUSTOM:-$HOME/.oh-my-zsh/custom}/themes/powerlevel10k 

修改.zshrc文件,將ZSH_THEME="robbyrussell"改為ZSH_THEME="powerlevel10k/powerlevel10k"。

配置

重新打開Termux,輸入p10k configure進入powerlevel10k的配置界面。第一次會自動下載默認字體,安裝后會自動退出,重新打開Termux即可。

可以根據配置向導的提示,定制適合自己風格的終端界面。

3. 啟用vi模式(可選)

Termux命令行中修改已經輸入的命令比較麻煩。通過開啟vi模式,用戶可以像在vi編輯器里一樣進行操作。對于vi用戶來說,進入這種模式后,編輯和修改命令就顯得十分得心應手了。

使用nano、neovim等終端編輯器修改.zshrc文件來進行配置,在plugins部分添加vi-mode項,開啟vi模式。在命令行狀態下,按Esc鍵,即可進入vi模式的普通模式。

不過在默認的vi模式存在按鍵bug,需要在.zshrc文件最后添加如下配置:

 

  1. # Better searching in command mode 
  2. bindkey -M vicmd '?' history-incremental-search-backward 
  3. bindkey -M vicmd '/' history-incremental-search-forward 
  4.  
  5. # Beginning search with arrow keys 
  6. bindkey "\033[1~" beginning-of-line 
  7. bindkey "\033[4~" end-of-line 
  8. bindkey '^[[3~' delete-char 
  9. bindkey "^[OA" up-line-or-beginning-search 
  10. bindkey "^[OB" down-line-or-beginning-search 
  11. bindkey -M vicmd "k" up-line-or-beginning-search 
  12. bindkey -M vicmd "j" down-line-or-beginning-search 

三、Python包安裝與配置

1. 安裝環境配置

 

  1. # 配置pypi源 
  2. pip install pip -U 
  3. pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple 
  4.  
  5. # 依賴項 
  6. pip install wheel 
  7. pip install setuptools --upgrade 

2 Python包安裝

安裝numpy和scipy

 

  1. # 添加第三方倉庫 
  2. curl -LO https://its-pointless.github.io/setup-pointless-repo.sh 
  3. bash setup-pointless-repo.sh 
  4.  
  5. # 從倉庫安裝numpy scipy 
  6. pkg install -y numpy scipy 

安裝lxml

 

  1. # 安裝lxml的依賴項 
  2. pkg install -y libxml2 libxslt 
  3.  
  4. # 安裝lxml 
  5. pip install lxml 

安裝pillow

 

  1. # 安裝pillow的依賴項 
  2. pkg install -y libjpeg-turbo libtiff  
  3. pkg install -y littlecms tk libwebp libsodium 
  4.  
  5. # 安裝pillow 
  6. pip install pillow 

安裝matplotlib

 

  1. # 安裝matplotlib的依賴項 
  2. pkg install -y freetype libpng 
  3. pip install kiwisolver cycler  
  4. pip install pyparsing python-dateutil 
  5. # 安裝matplotlib 
  6. pip install matplotlib 

安裝pandas

 

  1. # 安裝pandas的依賴項 
  2. pip install -y pytz cython 
  3.  
  4. # 安裝pandas 
  5. export CFLAGS="-Wno-deprecated-declarations -Wno-unreachable-code" 
  6. pip install pandas 

安裝jupyter

 

  1. # 安裝jupyter依賴項 
  2. pkg install -y libzmq libcrypt pkg-config 
  3.  
  4. # 安裝jupyter  
  5. pip install jupyter 

待安裝完成,輸入jupyter notebook啟動,將地址復制到瀏覽器中即可打開Jupyter。

四、IPython和NeoVim配置

對于希望在終端下進行使用的同學,推薦IPython+NeoVim組合。

1. IPython配置

安裝IPython

 

  1. # 安裝yapf 
  2. pip install yapf 
  3.  
  4. # 安裝Pygments 
  5. pip install pygments 
  6.  
  7. # 安裝ipython 
  8. pip install ipython 

創建配置文件

使用ipython profile create命令在

~/.ipython/profile_default/目錄下的創建ipython_config.py配置文件。

修改配置文件

使用neovim、nano等終端編輯器修改

~/.ipython/profile_default/目錄下的ipython_config.py文件,添加如下配置:

 

  1. # 配置終端顏色 
  2. c.InteractiveShell.colors = 'Linux' 
  3. c.TerminalInteractiveShell.autoformatter = 'yapf'  
  4. # 配置高亮方案,可通過pygmentize -L styles瀏覽所有可選配置 
  5. c.TerminalInteractiveShell.highlight_style = 'monokai'  
  6. # 配置魔術命令%editor使用的編輯器 
  7. c.TerminalInteractiveShell.editor = 'nvim' 

2. NeoVim配置

在配置NeoVim前,需要安裝pynvim插件,以擴展NeoVim對Python的支持。

  1. pip install pynvim 

創建init.vim文件進行基本配置

在命令行下,通過nvim命令進入NeoVim編輯器,輸入:e $MYVIMRC編輯NeoVim配置文件,使用:w進行保存,基本設置如下:

 

  1. " 一般設置 
  2. set nocompatible "關閉與vi的兼容模式 
  3. set number "顯示行號 
  4. set nowrap    "不自動折行 
  5. set showmatch    "顯示匹配的括號 
  6. set scrolloff=3        "距離頂部和底部3行" 
  7. set encoding=utf-8  "編碼 
  8. set fenc=utf-8      "編碼 
  9. set fileencodings=utf-8 
  10. set hlsearch        "搜索高亮 
  11. syntax on    "語法高亮 
  12. set tabstop=4   "tab寬度 
  13. set shiftwidth=4   
  14. set smarttab 
  15. set backspace=indent,eol,start 
  16. set expandtab       "tab替換為空格鍵 
  17. set fileformat=unix   "保存文件格式 
  18. set splitbelow 
  19. set cmdheight=2 
  20. set completeopt=longest,menu 
  21. set splitright 
  22. set foldmethod=indent 
  23. set foldlevel=99 
  24. " 設置空格為leader鍵 
  25. let mapleader=" " 

使用vim-plug安裝NeoVim插件

vim-plug是一款Vim插件管理工具,支持異步并行,可以快速安裝、更新或卸載插件。可以通過如下命令進行安裝,或手動下載plug.vim文件,復制到在~/.config/nvim/autoload文件夾中。

 

  1. curl -fLo ~/.config/nvim/autoload/plug.vim --create-dirs \ 
  2.     https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim 

使用vim-plug時,需要在init.vim中添加下列代碼塊。

 

  1. " vim-plug插件管理 
  2. call plug#begin('~/.config/nvim/plugged'
  3. Plug 'junegunn/vim-plug' 
  4. call plug#end() 

保存后,在普通模式下輸入:so %使配置文件生效,再通過:PlugInstall進行安裝。

常用插件及設置

下面列舉了一下常用插件和基本設置:

 

  1. call plug#begin('~/.config/nvim/plugged'
  2. Plug 'junegunn/vim-plug' 
  3. " git支持 
  4. Plug 'tpope/vim-fugitive' 
  5. " Python自動縮進插件 
  6. Plug 'vim-scripts/indentpython.vim' 
  7. " 項目管理工具 
  8. Plug 'mhinz/vim-startify' 
  9. " 快速對齊插件 
  10. Plug 'junegunn/vim-easy-align' 
  11. " 當前光標下的單詞增加下劃線 
  12. Plug 'itchyny/vim-cursorword' 
  13. " 快速選擇插件 
  14. Plug 'tpope/vim-surround' 
  15. " 自定義代碼片斷 
  16. Plug 'honza/vim-snippets' 
  17. " 語法高亮支持 
  18. Plug 'sheerun/vim-polyglot' 
  19. " 主題、狀態欄設置 
  20. Plug 'haishanh/night-owl.vim' 
  21. Plug 'vim-airline/vim-airline' 
  22. Plug 'vim-airline/vim-airline-themes' 
  23. Plug 'ryanoasis/vim-devicons' 
  24. " coc擴展 
  25. Plug 'neoclide/coc.nvim', {'branch''release'
  26. " fzf模糊查找 
  27. Plug 'junegunn/fzf', { 'dir''~/.fzf''do''./install --all' } 
  28. Plug 'junegunn/fzf.vim' 
  29. " whichkey快捷菜單 
  30. Plug 'liuchengxu/vim-which-key 
  31. " 浮動窗口支持 
  32. Plug 'voldikss/vim-floaterm' 
  33. " ranger文件管理器支持 
  34. Plug 'kevinhwang91/rnvimr' 
  35. call plug#end() 
  36.  
  37. " 啟用標簽欄 
  38. let g:airline#extensions#tabline#enabled = 1 
  39. " 支持圖標字體 
  40. let g:airline_powerline_fonts = 1 
  41. " 設置狀態欄主題 
  42. let g:airline_theme='night_owl' 
  43. " 設置主題 
  44. set termguicolors 
  45. let &t_8f = "\<Esc>[38;2;%lu;%lu;%lum" 
  46. let &t_8b = "\<Esc>[48;2;%lu;%lu;%lum" 
  47. syntax enable 
  48. colorscheme night-owl 

 

安裝、配置coc.nvim擴展

coc.nvim是一款支持擴展的插件,類似于油猴,可以通過安裝擴展,以實現像Vscode一樣使用NeoVim,下面列舉了Python相關的coc擴展和配置:

 

  1. " coc擴展 
  2. let g:coc_global_extensions = [ 
  3.       \'coc-json'
  4.       \'coc-pyright'
  5.       \'coc-snippets'
  6.       \'coc-xml'
  7.       \'coc-explorer'
  8.       \'coc-prettier'
  9.       \'coc-highlight'
  10.  
  11. " 使用tab鍵進行補全選擇 
  12. inoremap <silent><expr> <TAB> 
  13.       \ pumvisible() ? "\<C-n>" : 
  14.       \ <SID>check_back_space() ? "\<TAB>" : 
  15.       \ coc#refresh() 
  16. inoremap <expr><S-TAB> pumvisible() ? "\<C-p>" : "\<C-h>" 
  17.  
  18. function! s:check_back_space() abort 
  19.   let col = col('.') - 1 
  20.   return !col || getline('.')[col - 1]  =~# '\s' 
  21. endfunction 
  22.  
  23. " 使用回車進行補全選擇 
  24. inoremap <silent><expr> <cr> pumvisible() ? coc#_select_confirm() 
  25.                               \: "\<C-g>u\<CR>\<c-r>=coc#on_enter()\<CR>" 
  26.  
  27. " Highlight the symbol and its references when holding the cursor
  28. autocmd CursorHold * silent call CocActionAsync('highlight'
  29.  
  30. Add `:Format` command to format current buffer. 
  31. command! -nargs=0 Format :call CocAction('format'
  32.  
  33. Add `:Fold` command to fold current buffer. 
  34. command! -nargs=? Fold :call     CocAction('fold', <f-args>) 
  35.  
  36. Add `:OR` command for organize imports of the current buffer. 
  37. command! -nargs=0 OR   :call     CocAction('runCommand''editor.action.organizeImport'
  38.  
  39. " 添加狀態欄顯示支持 
  40. set statusline^=%{coc#status()}%{get(b:,'coc_current_function','')} 
  41.  
  42. " 啟用Prettier進行文件自動格式化 
  43. command! -nargs=0 Prettier :CocCommand prettier.formatFile 
  44. let g:prettier#autoformat = 1 
  45.  
  46. " 設置Coc Search 
  47. nnoremap <leader>? :CocSearch <C-R>=expand("<cword>")<CR><CR> 

此外,coc擴展可以通過在~/.config/nvim/文件夾中創建coc-settings.json文件來進行配置:

 

  1.     "python.defaultInterpreterPath""/data/data/com.termux/files/usr/bin/python"
  2.     "python.pythonPath""/data/data/com.termux/files/usr/bin/python"
  3.     "python.linting.pylintEnable":true
  4.     "python.formatting.provider""yapf"
  5.     "python.formatting.yapfArgs": [ 
  6.         "--style"
  7.         "{SPACES_AROUND_POWER_OPERATOR: True, SPACES_BEFORE_COMMENT: 1}" 
  8.     ], 
  9.     "explorer.width": 38, 
  10.     "explorer.quitOnOpen"true
  11.     "explorer.sources": [ 
  12.         { 
  13.             "name""buffer"
  14.             "expand"false 
  15.         }, 
  16.         { 
  17.             "name""file"
  18.             "expand"true 
  19.         } 
  20.     ], 
  21.     "explorer.file.column.indent.indentLine"true
  22.     "explorer.file.showHiddenFiles"true
  23.     "explorer.icon.enableNerdfont"true
  24.     "explorer.keyMappingMode""none"
  25.     "explorer.buffer.showHiddenBuffers"false
  26.     "explorer.keyMappings.global": { 
  27.         "o": ["wait""expanded?""collapse""expand"], 
  28.         "<cr>": ["wait""expandable?""cd""open"], 
  29.         "?""help"
  30.         "q""quit" 
  31.     }, 
  32.     "coc.preferences.formatOnSaveFiletypes": ["*"], 
  33.     "prettier.printWidth": 100, 
  34.     "prettier.eslintIntegration"true
  35.     "prettier.disableLanguages": [], 
  36.     "prettier.formatterPriority": 1, 
  37.     "prettier.useTabs"true
  38.     "prettier.trailingComma""all"
  39.     "prettier.singleQuote"false
  40.     "prettier.tabWidth": 4 

配置vim-which-key

vim-which-key是一款快捷鍵映射插件,可以通過簡單的設置進行快捷鍵自定義功能的實現。下面列舉了vim-which-key的簡單設置:

 

  1. " 將空格設置為whichkeyleader鍵 
  2. nnoremap <silent> <leader> :WhichKey '<Space>'<CR> 
  3.  
  4. " whichkey基本配置 
  5. let g:which_key_timeout = 100 
  6. let g:which_key_display_names = {'<CR>''↵''<TAB>''⇆'
  7. let g:which_key_map =  {} 
  8. let g:which_key_sep = '→' 
  9. let g:which_key_use_floating_win = 0 
  10. let g:which_key_max_size = 0 
  11.  
  12. " 呼出whichkey時隱藏狀態欄 
  13. autocmd! FileType which_key 
  14. autocmd  FileType which_key set laststatus=0 noshowmode noruler 
  15.   \| autocmd BufLeave <buffer> set laststatus=2 noshowmode ruler 
  16.  
  17. " 自定義whichkey 
  18. let g:which_key_map['?'] = 'search word' 
  19. let g:which_key_map['/'] = [ ':call Comment()'                                 , 'comment' ] 
  20. let g:which_key_map['.'] = [ ':e $MYVIMRC'                                     , 'open init' ] 
  21. let g:which_key_map[';'] = [ ':Commands'                                       , 'commands' ] 
  22. let g:which_key_map['e'] = [ ':CocCommand explorer --toggle --sources=file+'   , 'explorer' ] 
  23. let g:which_key_map['n'] = [ ':let @/ = ""'                                    , 'no highlight' ] 
  24. let g:which_key_map['q'] = [ '<Plug>(coc-fix-current)'                         , 'quickfix' ] 
  25. let g:which_key_map['u'] = [ ':UndotreeToggle'                                 , 'undo tree'
  26. let g:which_key_map['t'] = [':FloatermNew --wintype=normal --height=6'        , 'terminal'
  27. let g:which_key_map['r'] = [ ':FloatermNew ranger'                            , 'ranger'
  28. let g:which_key_map['f'] = [':FloatermNew fzf'                               , 'fzf'
  29. let g:which_key_map['g'] = [':FloatermNew lazygit'                           , 'git'
  30. let g:which_key_map['p'] = [':FloatermNew python'                            , 'python'
  31. call which_key#register('<Space>'"g:which_key_map"

 

 

 

 

在NeoVim中運行Python腳本

 

可以通過在NeoVim中添加自定義功能,從而在編寫時運行當前Python腳本。

 

  1. "在普通模式下,按r來運行Python腳本 
  2. noremap r :call RunPython()<CR>  
  3. func! RunPython() 
  4.     exec "w" 
  5.     if &filetype == 'python' 
  6.         exec "!time python %" 
  7.     endif 
  8. endfunc 

 

五、結語

本文主要分享了一下在Android平板上配置Python學習環境的經驗,相關配置文件請參見以下鏈接:

https://gitee.com/knightz1224/termux_config,謝謝大家支持!

責任編輯:未麗燕 來源: 今日頭條
相關推薦

2020-09-05 16:35:20

AndroidPython軟件開發

2019-05-21 13:55:22

Python編程語言游戲

2024-12-12 08:26:50

AI模型LLM大語言模型

2021-03-09 15:17:14

AndroidiCloud賬戶

2020-02-20 20:51:09

FedoraLinux播放音樂

2010-07-27 09:44:16

HTML 5

2023-06-01 15:37:11

PyCharm工具開發

2009-07-17 14:26:40

在Linux下配置Jy

2017-11-27 15:16:24

大數據數據科學培訓

2021-09-28 08:00:00

云原生云計算工具

2009-11-27 15:08:29

Cisco路由器日志

2021-08-19 08:00:00

Windows 11Windows 10虛擬機

2020-05-06 18:00:32

Debian 10ChrootSFTP服務

2021-04-21 10:22:56

Python 開發編程語言

2017-03-07 09:17:51

AtomicDocker遠程

2012-05-07 10:00:56

虛擬機

2012-03-19 21:19:14

vmwarekvm

2024-12-16 08:00:00

C++虛函數表

2015-02-26 10:50:49

Android Wea

2015-02-26 17:54:00

Android Wea
點贊
收藏

51CTO技術棧公眾號

主站蜘蛛池模板: 久久香焦 | 午夜电影网 | 欧美一区二区三区 | 成年网站在线观看 | www.夜夜草| 99精品九九 | 三级免费网 | 成人精品鲁一区一区二区 | 国产精品久久久久久久久久久免费看 | 久久久免费精品 | 久久精品国产久精国产 | 在线观看av免费 | 成人精品国产一区二区4080 | 亚洲一二三区不卡 | 精品视频在线播放 | 一区二区免费 | 91直接看| 一级aaaa毛片| 毛片一级黄色 | 日韩欧美精品 | 在线观看亚洲精品视频 | av在线天堂网 | 日本黄色大片免费 | 午夜视频网 | 亚洲男人的天堂网站 | 欧美精品1区2区3区 精品国产欧美一区二区 | 国产精品久久久久一区二区三区 | 天天操夜夜操免费视频 | 国产精品人人做人人爽 | 亚洲黄色网址视频 | 久久久夜色精品亚洲 | 亚洲在线中文字幕 | 国产丝袜一区二区三区免费视频 | 华丽的挑战在线观看 | 亚洲色图在线观看 | 久久久久成人精品免费播放动漫 | 日日碰狠狠躁久久躁96avv | 亚洲国产精品va在线看黑人 | 久久精品一区二区三区四区 | 亚洲精品在线国产 | 激情一区二区三区 |