第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會(huì)有你想問的

在特定點(diǎn)顯示對(duì)象但僅持續(xù)幾秒鐘

在特定點(diǎn)顯示對(duì)象但僅持續(xù)幾秒鐘

慕沐林林 2023-03-09 15:38:06
我正在制作一款 Android 游戲(只是為了學(xué)習(xí)一些東西)。您收集對(duì)象并為此獲得積分。例如,當(dāng)玩家達(dá)到 200 分時(shí),物體開始移動(dòng)得更快,背景發(fā)生變化等......就像是下一個(gè)級(jí)別。但是當(dāng)你達(dá)到那 200 分時(shí),我想在屏幕上顯示圖像或文本(類似于“2 級(jí)”)大約 2 秒,但我不知道如何顯示。我嘗試使用計(jì)時(shí)器,但失敗了。我有一個(gè)“如果”的陳述if (score >= 200) {    frameLayout.setBackgroundResource(R.drawable.lvl2);  // background change    // Make objects go faster    collect_obj1 = Math.round(screenWidth / 57F);     collect_obj2 = Math.round(screenWidth / 33F);      critical_obj = Math.round(screenWidth / 42F); // If you hit this one = Game Over    characterLvl1.setImageResource(R.drawable.characterLvl2);  // character change}
查看完整描述

1 回答

?
慕婉清6462132

TA貢獻(xiàn)1804條經(jīng)驗(yàn) 獲得超2個(gè)贊

嘗試這個(gè):


 long start_time = System.currentTimeMillis();

 long current_time = System.currentTimeMillis();

 long time_limit = 2000; // In milliseconds: this is the time you want to show the 

                         // object(2 sec)

 while(current_time - start_time) != 2000) {

    ShowObject(); //Here is where you show the object.

    current_time = System.currentTimeMillis();

 }


 HideObject(); //Hide the object after the while loop

它應(yīng)該工作。當(dāng)然,你可以隨心所欲地實(shí)現(xiàn)它,因?yàn)檫@不是有史以來最干凈的代碼?;蛘撸绻胍咝У奶幚沓绦虻?,請(qǐng)參閱:

https://stackoverflow.com/questions/23838071/how-to-hide-a-imageview-and-show-it-after-5-second

查看完整回答
反對(duì) 回復(fù) 2023-03-09
  • 1 回答
  • 0 關(guān)注
  • 89 瀏覽

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)