欧美一级特黄大片做受成人-亚洲成人一区二区电影-激情熟女一区二区三区-日韩专区欧美专区国产专区

Android中怎么通過自定義View實(shí)現(xiàn)彈幕效果

Android中怎么通過自定義View實(shí)現(xiàn)彈幕效果,相信很多沒有經(jīng)驗(yàn)的人對此束手無策,為此本文總結(jié)了問題出現(xiàn)的原因和解決方法,通過這篇文章希望你能解決這個問題。

10年積累的網(wǎng)站設(shè)計(jì)、做網(wǎng)站經(jīng)驗(yàn),可以快速應(yīng)對客戶對網(wǎng)站的新想法和需求。提供各種問題對應(yīng)的解決方案。讓選擇我們的客戶得到更好、更有力的網(wǎng)絡(luò)服務(wù)。我雖然不認(rèn)識你,你也不認(rèn)識我。但先網(wǎng)站設(shè)計(jì)后付款的網(wǎng)站建設(shè)流程,更有鄂倫春免費(fèi)網(wǎng)站建設(shè)讓你可以放心的選擇與我們合作。

1、自定義Textitem類表示彈幕的信息2、自定義view繼承view,使用ArrayList保存每條Textitem3、隨機(jī)生成坐標(biāo)點(diǎn)繪制每條TextItem,不斷變換Text的橫坐標(biāo)實(shí)現(xiàn)彈幕的滾動

首先創(chuàng)建彈幕類,彈幕包括坐標(biāo),顏色,滾動速度,以及文字內(nèi)容:

public class Textitem { private String content; private float fx; private float fy; private float perstep; private int textcolor;  public Textitem(String content,float fx,float fy,float perstep,int textcolor){  this.content = content;  this.fx = fx;  this.fy = fy;  this.perstep = perstep;  this.textcolor = textcolor; }  public String getContent(){  return content; }  public void setContent(String content){  this.content = content; }  public int getTextcolor(){  return textcolor; }  public void setTextcolor(int textcolor){  this.textcolor = textcolor; }  public float getFx(){   return fx; }  public void setFx(float fx){  this.fx = fx; }  public float getFy(){  return fy; }  public void setFy(float fy){  this.fy = fy; }  public float getPerstep(){  return perstep; }  public void setPerstep(){  fx -= perstep; }}

接下來自定義View,彈幕橫坐標(biāo)不斷變換,需要實(shí)現(xiàn)定時(shí)刷新界面,重新繪制text。所以實(shí)現(xiàn)了Runable接口,在構(gòu)造方法中開啟線程,不斷循環(huán),每600毫秒刷新界面:

public class barrageview extends View implements Runnable{  private List<Textitem> items = new ArrayList<>(); Random random = new Random(); private Paint paint;  public barrageview(Context context) {  super(context);  initpaint();  new Thread(this).start(); }  public barrageview(Context context, AttributeSet attrs) {  super(context, attrs);  initpaint();  new Thread(this).start(); }  public barrageview(Context context, AttributeSet attrs, int defStyleAttr) {  super(context, attrs, defStyleAttr);  initpaint();  new Thread(this).start(); }   public void addTextitem(String content){  float x = random.nextFloat()*getWidth();  float y = Math.abs(random.nextFloat()*(getHeight()-50))+40;  float step = random.nextFloat()*50;  int r = random.nextInt(255);  int g = random.nextInt(255);  int b = random.nextInt(255);  Textitem item = new Textitem(content,x,y,step, Color.rgb(r,g,b));  items.add(item); }  public void initpaint(){  paint = new TextPaint(Paint.ANTI_ALIAS_FLAG);  paint.setColor(Color.RED);  paint.setTextSize(30); }  @Override public void draw(Canvas canvas) {  super.draw(canvas);  for(Textitem item:items){   paint.setColor(item.getTextcolor());   canvas.drawText(item.getContent(),item.getFx(),item.getFy(),paint);  } }  @Override public void run() {  while(true){   try{    Thread.sleep(600);    for(Textitem item:items){     item.setPerstep();    }    postInvalidate();   } catch (InterruptedException e){    e.printStackTrace();   }  } }}

彈幕VIew就是不斷從ArrayList中獲取彈幕進(jìn)行繪制,由于在其他線程進(jìn)行刷新,所以使用postInvalidate進(jìn)行重繪。

由于只是實(shí)現(xiàn)demo,很多問題沒有考慮,存在問題:

彈幕離開屏幕后沒有進(jìn)行清除,使得ArrayList不斷擴(kuò)大,可以進(jìn)行一個判斷,若Textitem的繪制區(qū)域不在屏幕內(nèi)則刪掉此item彈幕若沒有交互需求,可以使用Surfaceview進(jìn)行繪制,SurfaceView可以在子線程更新UI,多緩存機(jī)制也可以避免畫面跳動另外注意下自定義View的構(gòu)造函數(shù)的調(diào)用時(shí)機(jī):

public View(Context context)是在java代碼創(chuàng)建視圖直接通過new方法創(chuàng)建的時(shí)候被調(diào)用,public View(Context context, Attributeset attrs)是在xml創(chuàng)建但是沒有指定style的時(shí)候被調(diào)用public View(Context Context,AttributeSet attrs, int defStyle)給View提供一個基本的style,沒有對View設(shè)置屬性就使用style中的屬性

看完上述內(nèi)容,你們掌握Android中怎么通過自定義View實(shí)現(xiàn)彈幕效果的方法了嗎?如果還想學(xué)到更多技能或想了解更多相關(guān)內(nèi)容,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道,感謝各位的閱讀!

當(dāng)前題目:Android中怎么通過自定義View實(shí)現(xiàn)彈幕效果
文章來源:http://aaarwkj.com/article32/jechpc.html

成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供手機(jī)網(wǎng)站建設(shè)、網(wǎng)站內(nèi)鏈、網(wǎng)站收錄微信小程序、服務(wù)器托管、響應(yīng)式網(wǎng)站

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來源: 創(chuàng)新互聯(lián)

h5響應(yīng)式網(wǎng)站建設(shè)
av高清不卡一区二区免费在线| 日本最新一区二区三区视频| 午夜草草视频在线观看| 亚洲小说欧美激情另类| 欧美中日韩精品免费在线| 亚洲免费av一区二区| 亚洲91精品一区二区三区| 亚洲精品主播一区二区三区| 在线观看日韩三级av| 国产精品av一区二区在线| 欧美日韩精品一区二区在线| 亚洲国产日韩欧美视频| av免费在线观看大全| 日本久久精品视频一区| 人妻鲁丝一区二区三区| 97视频高清在线观看| 91色综合久久久久婷婷| 蜜臀av在线国产一区| 女人的天堂av免费在线观看| 中文字幕不卡在线观看不卡| 亚洲一区二区三区在线播| 日本成人一区二区在线播放| 最新天堂av资源在线观看| 国产中文字幕一区久久| 国产大学生露脸在线视频| 国产精品久久亚洲一区二区| 男人的天堂成人午夜视频| 日韩精品视频高清在线观看| 国产一区二区三区在线看片| 午夜激情视频福利在线观看| 黄色永久网站在线播放| 亚洲一区精品二人人爽久久| 日本 午夜 在线 视频| 人妻少妇久久久久久69| 亚洲黄色av电影在线| 免费久久人人爽人人爽| 中日韩一二三四区在线看| 国内精品人妻在线中文字幕| 日本一级二级三级在线看| 微拍福利一区二区三区| 亚洲中文自偷自拍另类|