在线观看www成人影院-在线观看www日本免费网站-在线观看www视频-在线观看操-欧美18在线-欧美1级

0
  • 聊天消息
  • 系統(tǒng)消息
  • 評論與回復(fù)
登錄后你可以
  • 下載海量資料
  • 學(xué)習(xí)在線課程
  • 觀看技術(shù)視頻
  • 寫文章/發(fā)帖/加入社區(qū)
會員中心
創(chuàng)作中心

完善資料讓更多小伙伴認(rèn)識你,還能領(lǐng)取20積分哦,立即完善>

3天內(nèi)不再提示

鴻蒙OS開發(fā)實例:【瀑布流式圖片瀏覽】

jf_46214456 ? 來源:jf_46214456 ? 作者:jf_46214456 ? 2024-03-29 17:38 ? 次閱讀

介紹

瀑布流式展示圖片文字,在當(dāng)前產(chǎn)品設(shè)計中已非常常見,本篇將介紹關(guān)于WaterFlow的圖片瀏覽場景,順便集成Video控件,以提高實踐的趣味性

準(zhǔn)備

  1. 請參照[官方指導(dǎo)],創(chuàng)建一個Demo工程,選擇Stage模型
  2. 熟讀HarmonyOS 官方指導(dǎo)“[https://gitee.com/li-shizhen-skin/harmony-os/blob/master/README.md”]

搜狗高速瀏覽器截圖20240326151547.png

效果

豎屏

image.png

橫屏

數(shù)據(jù)源

功能介紹

  1. 瀑布流式圖片展示
  2. 橫豎屏圖片/視頻展示

核心代碼

布局

整體結(jié)構(gòu)為:瀑布流 + 加載進(jìn)度條

每條數(shù)據(jù)結(jié)構(gòu): 圖片 + 文字 【由于沒有設(shè)定圖片寬高比,因此通過文字長度來自然生成瀑布流效果】

由于有點數(shù)據(jù)量,按照官方指導(dǎo),采用LazyForEach懶加載方式

Stack() {
  WaterFlow({ scroller: this.scroller }) {
    LazyForEach(dataSource, item = > {
      FlowItem() {
        Column({ space: 10 }) {
          Image(item.coverUrl).objectFit(ImageFit.Cover)
            .width('100%')
            .height(this.imageHeight)
          Text(item.title)
            .fontSize(px2fp(50))
            .fontColor(Color.Black)
            .width('100%')
        }.onClick(() = > {
          router.pushUrl({ url: 'custompages/waterflow/Detail', params: item })
        })
      }
    }, item = > item)
  }
  .columnsTemplate(this.columnsTemplate)
  .columnsGap(5)
  .rowsGap(5)
  .onReachStart(() = > {
    console.info("onReachStart")
  })
  .onReachEnd(() = > {
    console.info("onReachEnd")

    if (!this.running) {
      if ((this.pageNo + 1) * 15 < this.total) {
        this.pageNo++
        this.running = true

        setTimeout(() = > {
          this.requestData()
        }, 2000)
      }
    }

  })
  .width('100%')
  .height('100%')
  .layoutDirection(FlexDirection.Column)

  if (this.running) {
     this.loadDataFooter()
  }

}
復(fù)制

橫豎屏感知

橫豎屏感知整體有兩個場景:1. 當(dāng)前頁面發(fā)生變化 2.初次進(jìn)入頁面
這里介紹幾種監(jiān)聽方式:

當(dāng)前頁面監(jiān)聽

import mediaquery from '@ohos.mediaquery';

//這里你也可以使用"orientation: portrait" 參數(shù)
listener = mediaquery.matchMediaSync('(orientation: landscape)');
this.listener.on('change', 回調(diào)方法)
復(fù)制

外部傳參

通過UIAbility, 一直傳到Page文件

事件傳遞

采用EeventHub機(jī)制,在UIAbility把橫豎屏切換事件發(fā)出來,Page文件注冊監(jiān)聽事件

this.context.eventHub.on('onConfigurationUpdate', (data) = > {
  console.log(JSON.stringify(data))
  let config = data as Configuration
  this.screenDirection = config.direction
  this.configureParamsByScreenDirection()
});
復(fù)制

API數(shù)據(jù)請求

這里需要設(shè)置Android 或者 iOS 特征UA

requestData() {
  let url = `https://api.apiopen.top/api/getHaoKanVideo?page=${this.pageNo}&size=15`
  let httpRequest = http.createHttp()
  httpRequest.request(
    url,
    {
      header: {
        "User-Agent": "Mozilla/5.0 (Linux; Android 8.0.0; SM-G955U Build/R16NW) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.0.0 Mobile Safari/537.36"
      }
    }).then((value: http.HttpResponse) = > {

    if (value.responseCode == 200) {

      let searchResult: SearchResult = JSON.parse(value.result as string)

      if (searchResult) {
        this.total = searchResult.result.total

        searchResult.result.list.forEach(ItemModel = > {
          dataSource.addData(ItemModel)
        })
      }
    } else {
      console.error(JSON.stringify(value))
    }

  }).catch(e = > {

    Logger.d(JSON.stringify(e))

    promptAction.showToast({
      message: '網(wǎng)絡(luò)異常: ' + JSON.stringify(e),
      duration: 2000
    })

  }).finally(() = > {
    this.running = false
  })

}
復(fù)制

橫豎屏布局調(diào)整

因為要適應(yīng)橫豎屏,所以需要在原有布局的基礎(chǔ)上做一點改造, 讓瀑布流的列參數(shù)改造為@State 變量 , 讓圖片高度的參數(shù)改造為@State 變量

WaterFlow({ scroller: this.scroller }) {
  LazyForEach(dataSource, item = > {
    FlowItem() {
      Column({ space: 10 }) {
        Image(item.coverUrl).objectFit(ImageFit.Cover)
          .width('100%')
          .height(this.imageHeight)
        Text(item.title)
          .fontSize(px2fp(50))
          .fontColor(Color.Black)
          .width('100%')
      }.onClick(() = > {
        router.pushUrl({ url: 'custompages/waterflow/Detail', params: item })
      })
    }
  }, item = > item)
}
.columnsTemplate(this.columnsTemplate)
復(fù)制

瀑布流完整代碼

API返回的數(shù)據(jù)結(jié)構(gòu)

import { ItemModel } from './ItemModel'

export default class SearchResult{
  public code: number
  public message: string
  public result: childResult
}

class childResult {
  public total: number
  public list: ItemModel[]
};
復(fù)制

Item Model

export class ItemModel{
  public id: number
  public tilte: string
  public userName: string
  public userPic: string
  public coverUrl: string
  public playUrl: string
  public duration: string
}復(fù)制

WaterFlow數(shù)據(jù)源接口

import List from '@ohos.util.List';
import { ItemModel } from './ItemModel';

export class PicData implements IDataSource {

  private data: List< ItemModel > = new List< ItemModel >()

  addData(item: ItemModel){
    this.data.add(item)
  }

  unregisterDataChangeListener(listener: DataChangeListener): void {

  }

  registerDataChangeListener(listener: DataChangeListener): void {

  }

  getData(index: number): ItemModel {
     return this.data.get(index)
  }

  totalCount(): number {
    return this.data.length
  }


}復(fù)制

布局

import http from '@ohos.net.http';
import { CommonConstants } from '../../common/CommonConstants';
import Logger from '../../common/Logger';
import { PicData } from './PicData';
import SearchResult from './Result';
import promptAction from '@ohos.promptAction'
import router from '@ohos.router';
import common from '@ohos.app.ability.common';
import { Configuration } from '@ohos.app.ability.Configuration';
import mediaquery from '@ohos.mediaquery';

let dataSource = new PicData()

/**
 * 問題: 橫豎屏切換,間距會發(fā)生偶發(fā)性變化
 * 解決方案:延遲300毫秒改變參數(shù)
 *
 */
@Entry
@Component
struct GridLayoutIndex {
  private context = getContext(this) as common.UIAbilityContext;
  @State pageNo: number = 0
  total: number = 0
  @State running: boolean = true
  @State screenDirection: number = this.context.config.direction
  @State columnsTemplate: string = '1fr 1fr'
  @State imageHeight: string = '20%'
  scroller: Scroller = new Scroller()

  // 當(dāng)設(shè)備橫屏?xí)r條件成立
  listener = mediaquery.matchMediaSync('(orientation: landscape)');

  onPortrait(mediaQueryResult) {
    if (mediaQueryResult.matches) {
      //橫屏
      this.screenDirection = 1
    } else {
      //豎屏
      this.screenDirection = 0
    }

    setTimeout(()= >{
      this.configureParamsByScreenDirection()
    }, 300)
  }

  onBackPress(){
    this.context.eventHub.off('onConfigurationUpdate')
  }

  aboutToAppear() {
    console.log('已進(jìn)入瀑布流頁面')

    console.log('當(dāng)前屏幕方向:' + this.context.config.direction)

    if (AppStorage.Get('screenDirection') != 'undefined') {
      this.screenDirection = AppStorage.Get(CommonConstants.ScreenDirection)
    }

    this.configureParamsByScreenDirection()

    this.eventHubFunc()

    let portraitFunc = this.onPortrait.bind(this)
    this.listener.on('change', portraitFunc)

    this.requestData()
  }

  @Builder loadDataFooter() {
    LoadingProgress()
      .width(px2vp(150))
      .height(px2vp(150))
      .color(Color.Orange)
  }

  build() {
    Stack() {
      WaterFlow({ scroller: this.scroller }) {
        LazyForEach(dataSource, item = > {
          FlowItem() {
            Column({ space: 10 }) {
              Image(item.coverUrl).objectFit(ImageFit.Cover)
                .width('100%')
                .height(this.imageHeight)
              Text(item.title)
                .fontSize(px2fp(50))
                .fontColor(Color.Black)
                .width('100%')
            }.onClick(() = > {
              router.pushUrl({ url: 'custompages/waterflow/Detail', params: item })
            })
          }
        }, item = > item)
      }
      .columnsTemplate(this.columnsTemplate)
      .columnsGap(5)
      .rowsGap(5)
      .onReachStart(() = > {
        console.info("onReachStart")
      })
      .onReachEnd(() = > {
        console.info("onReachEnd")

        if (!this.running) {
          if ((this.pageNo + 1) * 15 < this.total) {
            this.pageNo++
            this.running = true

            setTimeout(() = > {
              this.requestData()
            }, 2000)
          }
        }

      })
      .width('100%')
      .height('100%')
      .layoutDirection(FlexDirection.Column)

      if (this.running) {
         this.loadDataFooter()
      }

    }

  }

  requestData() {
    let url = `https://api.apiopen.top/api/getHaoKanVideo?page=${this.pageNo}&size=15`
    let httpRequest = http.createHttp()
    httpRequest.request(
      url,
      {
        header: {
          "User-Agent": "Mozilla/5.0 (Linux; Android 8.0.0; SM-G955U Build/R16NW) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.0.0 Mobile Safari/537.36"
        }
      }).then((value: http.HttpResponse) = > {

      if (value.responseCode == 200) {

        let searchResult: SearchResult = JSON.parse(value.result as string)

        if (searchResult) {
          this.total = searchResult.result.total

          searchResult.result.list.forEach(ItemModel = > {
            dataSource.addData(ItemModel)
          })
        }
      } else {
        console.error(JSON.stringify(value))
      }

    }).catch(e = > {

      Logger.d(JSON.stringify(e))

      promptAction.showToast({
        message: '網(wǎng)絡(luò)異常: ' + JSON.stringify(e),
        duration: 2000
      })

    }).finally(() = > {
      this.running = false
    })

  }

  eventHubFunc() {
    this.context.eventHub.on('onConfigurationUpdate', (data) = > {
      console.log(JSON.stringify(data))
      // let config = data as Configuration
      // this.screenDirection = config.direction
      // this.configureParamsByScreenDirection()
    });
  }

  configureParamsByScreenDirection(){
    if (this.screenDirection == 0) {
      this.columnsTemplate = '1fr 1fr'
      this.imageHeight = '20%'
    } else {
      this.columnsTemplate = '1fr 1fr 1fr 1fr'
      this.imageHeight = '50%'
    }
  }

}

復(fù)制

圖片詳情頁

import { CommonConstants } from '../../common/CommonConstants';
import router from '@ohos.router';
import { ItemModel } from './ItemModel';
import common from '@ohos.app.ability.common';
import { Configuration } from '@ohos.app.ability.Configuration';

@Entry
@Component
struct DetailIndex{
  private context = getContext(this) as common.UIAbilityContext;

  extParams: ItemModel
  @State previewUri: Resource = $r('app.media.splash')
  @State curRate: PlaybackSpeed = PlaybackSpeed.Speed_Forward_1_00_X
  @State isAutoPlay: boolean = false
  @State showControls: boolean = true
  controller: VideoController = new VideoController()

  @State screenDirection: number = 0
  @State videoWidth: string = '100%'
  @State videoHeight: string = '70%'

  @State tipWidth: string = '100%'
  @State tipHeight: string = '30%'

  @State componentDirection: number = FlexDirection.Column
  @State tipDirection: number = FlexDirection.Column

  aboutToAppear() {
    console.log('準(zhǔn)備加載數(shù)據(jù)')
    if(AppStorage.Get('screenDirection') != 'undefined'){
      this.screenDirection = AppStorage.Get(CommonConstants.ScreenDirection)
    }

    this.configureParamsByScreenDirection()

    this.extParams = router.getParams() as ItemModel
    this.eventHubFunc()
  }

  onBackPress(){
    this.context.eventHub.off('onConfigurationUpdate')
  }

  build() {
      Flex({direction: this.componentDirection}){
        Video({
          src: this.extParams.playUrl,
          previewUri: this.extParams.coverUrl,
          currentProgressRate: this.curRate,
          controller: this.controller,
        }).width(this.videoWidth).height(this.videoHeight)
          .autoPlay(this.isAutoPlay)
          .objectFit(ImageFit.Contain)
          .controls(this.showControls)
          .onStart(() = > {
            console.info('onStart')
          })
          .onPause(() = > {
            console.info('onPause')
          })
          .onFinish(() = > {
            console.info('onFinish')
          })
          .onError(() = > {
            console.info('onError')
          })
          .onPrepared((e) = > {
            console.info('onPrepared is ' + e.duration)
          })
          .onSeeking((e) = > {
            console.info('onSeeking is ' + e.time)
          })
          .onSeeked((e) = > {
            console.info('onSeeked is ' + e.time)
          })
          .onUpdate((e) = > {
            console.info('onUpdate is ' + e.time)
          })

        Flex({direction: this.tipDirection, justifyContent: FlexAlign.Center, alignItems: ItemAlign.Center, alignContent: FlexAlign.Center}){
          Row() {
            Button('src').onClick(() = > {
              // this.videoSrc = $rawfile('video2.mp4') // 切換視頻源
            }).margin(5)
            Button('previewUri').onClick(() = > {
              // this.previewUri = $r('app.media.poster2') // 切換視頻預(yù)覽海報
            }).margin(5)
            Button('controls').onClick(() = > {
              this.showControls = !this.showControls // 切換是否顯示視頻控制欄
            }).margin(5)
          }

          Row() {
            Button('start').onClick(() = > {
              this.controller.start() // 開始播放
            }).margin(5)
            Button('pause').onClick(() = > {
              this.controller.pause() // 暫停播放
            }).margin(5)
            Button('stop').onClick(() = > {
              this.controller.stop() // 結(jié)束播放
            }).margin(5)
            Button('setTime').onClick(() = > {
              this.controller.setCurrentTime(10, SeekMode.Accurate) // 精準(zhǔn)跳轉(zhuǎn)到視頻的10s位置
            }).margin(5)
          }
          Row() {
            Button('rate 0.75').onClick(() = > {
              this.curRate = PlaybackSpeed.Speed_Forward_0_75_X // 0.75倍速播放
            }).margin(5)
            Button('rate 1').onClick(() = > {
              this.curRate = PlaybackSpeed.Speed_Forward_1_00_X // 原倍速播放
            }).margin(5)
            Button('rate 2').onClick(() = > {
              this.curRate = PlaybackSpeed.Speed_Forward_2_00_X // 2倍速播放
            }).margin(5)
          }
        }
        .width(this.tipWidth).height(this.tipHeight)
      }

  }

  eventHubFunc() {
    this.context.eventHub.on('onConfigurationUpdate', (data) = > {
       console.log(JSON.stringify(data))
       let config = data as Configuration
       this.screenDirection = config.direction

       this.configureParamsByScreenDirection()

    });
  }


  configureParamsByScreenDirection(){
    if(this.screenDirection == 0){
      this.videoWidth = '100%'
      this.videoHeight = '70%'
      this.tipWidth = '100%'
      this.tipHeight = '30%'
      this.componentDirection = FlexDirection.Column

    } else {
      this.videoWidth = '60%'
      this.videoHeight = '100%'
      this.tipWidth = '40%'
      this.tipHeight = '100%'
      this.componentDirection = FlexDirection.Row

    }

  }

}

審核編輯 黃宇

聲明:本文內(nèi)容及配圖由入駐作者撰寫或者入駐合作網(wǎng)站授權(quán)轉(zhuǎn)載。文章觀點僅代表作者本人,不代表電子發(fā)燒友網(wǎng)立場。文章及其配圖僅供工程師學(xué)習(xí)之用,如有內(nèi)容侵權(quán)或者其他違規(guī)問題,請聯(lián)系本站處理。 舉報投訴
  • 鴻蒙
    +關(guān)注

    關(guān)注

    59

    文章

    2535

    瀏覽量

    43808
  • HarmonyOS
    +關(guān)注

    關(guān)注

    80

    文章

    2084

    瀏覽量

    32235
  • 鴻蒙OS
    +關(guān)注

    關(guān)注

    0

    文章

    191

    瀏覽量

    4898
收藏 人收藏

    評論

    相關(guān)推薦
    熱點推薦

    鴻蒙5開發(fā)寶藏案例分享---瀑布流優(yōu)化實戰(zhàn)分享

    以下是根據(jù)鴻蒙官方瀑布流優(yōu)化案例整理的非官方技術(shù)分享,結(jié)合開發(fā)實戰(zhàn)經(jīng)驗重新解讀,加入更多場景分析和代碼示例: ?** 鴻蒙瀑布流性能優(yōu)化實戰(zhàn)
    發(fā)表于 06-12 17:41

    鴻蒙5開發(fā)寶藏案例分享---PC開發(fā)案例解析

    鴻蒙PC/2in1開發(fā)寶藏指南:官方案例實戰(zhàn)解析 大家好呀! 最近在折騰鴻蒙的PC/2in1應(yīng)用開發(fā),才發(fā)現(xiàn)官方文檔里藏了一堆超實用的案例!這些案例就像“隱藏關(guān)卡”,能幫你少踩80%的
    發(fā)表于 06-12 16:07

    鴻蒙Next實現(xiàn)瀑布流布局

    # 鴻蒙Next實現(xiàn)瀑布流布局 #鴻蒙影音娛樂類應(yīng)用 #拍攝美化 #HarmonyOS ## 一、環(huán)境準(zhǔn)備與項目創(chuàng)建 在開始實現(xiàn)瀑布流布局前,需確保已安裝好 DevEco Stud
    發(fā)表于 06-10 14:17

    鴻蒙NEXT上傳圖片功能PhotoViewPicker核心功能解析

    # 鴻蒙NEXT上傳圖片功能PhotoViewPicker核心功能解析 #ArkTS#鴻蒙Next#HarmonyOS_SDK應(yīng)用服務(wù)#HarmonyOS 語言 `PhotoViewPicker
    發(fā)表于 06-06 15:00

    鴻蒙5開發(fā)隱藏案例分享---自由流轉(zhuǎn)的瀏覽進(jìn)度接續(xù)

    **?**鴻蒙開發(fā)隱藏案例大揭秘!手把手教你玩轉(zhuǎn)應(yīng)用接續(xù)功能? 大家好呀~今天要跟大家分享一個超實用的鴻蒙開發(fā)技巧!之前總覺得鴻蒙的官方文檔
    發(fā)表于 06-03 18:47

    鴻蒙5開發(fā)寶藏案例分享---一多開發(fā)實例(游戲)

    ?【開發(fā)者必看】鴻蒙隱藏寶箱大公開!這些實戰(zhàn)案例讓你的開發(fā)效率翻倍! 哈嘍各位開發(fā)者小伙伴!今天要和大家分享一個讓我拍大腿的發(fā)現(xiàn)——原來鴻蒙
    發(fā)表于 06-03 18:22

    鴻蒙5開發(fā)寶藏案例分享---一多開發(fā)實例(地圖導(dǎo)航)

    案例!最近在肝鴻蒙項目時意外發(fā)現(xiàn)了這個地圖導(dǎo)航的\"一多\"開發(fā)實例,簡直像發(fā)現(xiàn)新大陸!這就帶大家沉浸式體驗這個超實用的開發(fā)模板~ ? 先劃重點:這個案例完美演示了如何用一套代碼搞定
    發(fā)表于 06-03 16:17

    鴻蒙5開發(fā)寶藏案例分享---一多開發(fā)實例(旅行訂票)

    ? 鴻蒙開發(fā)寶藏大發(fā)現(xiàn)!一多開發(fā)實戰(zhàn)案例解析(旅行訂票篇) 大家好!今天在翻鴻蒙開發(fā)者文檔時,意外發(fā)現(xiàn)了官方藏著一整片\"案例綠洲\"!尤其
    發(fā)表于 06-03 16:16

    鴻蒙5開發(fā)寶藏案例分享---一多開發(fā)實例圖片美化)

    ?【鴻蒙開發(fā)寶藏案例分享】一次搞定多端適配的圖片美化應(yīng)用開發(fā)思路!? Hey小伙伴們~ 今天在翻鴻蒙文檔時挖到一個超實用的大寶藏!原來官方早
    發(fā)表于 06-03 16:09

    鴻蒙5開發(fā)寶藏案例分享---一多開發(fā)實例(購物比價)

    鴻蒙開發(fā)寶藏案例大公開!】手把手教你用\"一多\"能力打造跨端購物比價App 小伙伴們好呀!今天要和大家分享一個鴻蒙開發(fā)的隱藏寶典——官方購物比價應(yīng)用
    發(fā)表于 06-03 16:07

    鴻蒙5開發(fā)寶藏案例分享---一多開發(fā)實例(社區(qū)評論)

    應(yīng)用” 的一多開發(fā)實例,看完直呼“原來還能這樣玩?!” ? 必須整理出來和大家嘮嘮,順便帶大家手把手拆解幾個核心案例! ?** 一多開發(fā)是啥?一句話總結(jié):** 一次開發(fā),自動適配手機(jī)、
    發(fā)表于 06-03 16:03

    鴻蒙5開發(fā)寶藏案例分享---一多開發(fā)實例(短視頻)

    ?【干貨預(yù)警】今天在鴻蒙開發(fā)者文檔里挖到寶了!原來官方早就藏了這么多\"一多開發(fā)\"的實戰(zhàn)案例,難怪我之前的跨端適配總踩坑... 這就把最新發(fā)現(xiàn)的短視頻開發(fā)秘籍整理分享給大家
    發(fā)表于 06-03 15:59

    鴻蒙5開發(fā)寶藏案例分享---一多開發(fā)實例(長視頻)

    ;實例,看完直呼\"原來還能這樣玩!\" 今天咱們就來好好扒一扒這些隱藏的寶藏,附帶手把手的代碼解析! ?** 長視頻應(yīng)用案例:一次開發(fā)征服四類設(shè)備** 核心功能 :首頁瀑布
    發(fā)表于 06-03 15:58

    華為發(fā)布鴻蒙原生智能,OS深度融合AI,小藝升級為系統(tǒng)級智能體

    6月21日,華為開發(fā)者大會(HDC 2024)于東莞松山湖舉行,會上,華為發(fā)布鴻蒙原生智能(Harmony Intelligence),并宣布HarmonyOS NEXT面向開發(fā)者和先鋒用戶開放
    的頭像 發(fā)表于 06-24 14:30 ?1093次閱讀
    華為發(fā)布<b class='flag-5'>鴻蒙</b>原生智能,<b class='flag-5'>OS</b>深度融合AI,小藝升級為系統(tǒng)級智能體

    HDC2024華為發(fā)布鴻蒙原生智能:AI與OS深度融合,開啟全新的AI時代

    6月21日,華為開發(fā)者大會2024(HDC.2024)召開。 HarmonyOS NEXT將AI與OS深度融合,構(gòu)筑全新鴻蒙原生智能框架。大會現(xiàn)場,華為常務(wù)董事、終端BG董事長、智能汽車解決方案BU
    的頭像 發(fā)表于 06-24 09:28 ?1129次閱讀
    HDC2024華為發(fā)布<b class='flag-5'>鴻蒙</b>原生智能:AI與<b class='flag-5'>OS</b>深度融合,開啟全新的AI時代
    主站蜘蛛池模板: 丁香婷婷综合网 | 最新人妖shemaletube人妖 最新日本免费一区二区三区中文 | 欧美日韩国产另类一区二区三区 | 五月婷婷六月丁香激情 | 精品一精品国产一级毛片 | 午夜男人影院 | 日韩精品一区二区在线观看 | 日韩欧美卡一卡二卡新区 | 四虎影视色费永久在线观看 | 高h水果榨汁play男男 | 老师别揉我胸啊嗯上课呢视频 | 国产黄在线观看免费观看不卡 | 特级做a爰片毛片免费看一区 | 成年网站在线 | 亚欧有色亚欧乱色视频 | 1024你懂的在线观看 | 午夜色视频 | 久久婷婷国产精品香蕉 | 成人男女啪啪免费观看网站 | 欧美xxxx做受欧美88bbw | 美女免费视频色在线观看 | 奇米影视五月天 | 狠狠狠狠狠狠狠狠 | 欧美影院| 中文字幕一精品亚洲无线一区 | 高黄视频 | 国产香蕉精品视频在 | 久久精品国波多野结衣 | 热re久久精品国产99热 | 啪啪调教所29下拉式免费阅读 | bt天堂在线www最新版资源网 | 狼狼鲁狼狼色 | 美女网站视频色 | 国产一区二区三区影院 | 免费观看交性大片 | 亚洲高清网站 | 久久久久88色偷偷免费 | 国产精品亚洲四区在线观看 | a亚洲天堂| 男女做性无遮挡免费视频 | 四虎国产精品免费入口 |