runnable

    4熱度

    2回答

    我想每5秒運行一段代碼。我在處理程序中遇到了麻煩。 Kotlin如何做到這一點?這是我到目前爲止。還要注意,變量Timer_Preview是一個Handler。

    0熱度

    1回答

    我有一個具有閃爍光標的自定義視圖。我使用Handler閃爍光標並在延遲500毫秒後發佈Runnable。 當視圖處於活動狀態時,我想通過刪除處理程序上的回調來停止閃爍。不過,我注意到,當我切換到另一個應用程序時,處理程序/ runnable繼續執行,即日誌表示它仍在閃爍。 如果我有看法的控制,我只想做一些像this @Override protected void onPause() {

    0熱度

    1回答

    我需要製作一個帶有一些參數的可運行HashMap。 (我編碼一個遊戲,我想:「當一名球員進入一個特定的命令它的運行與ARGS一個比空隙,緩存在我的HashMap中。」) 的代碼將是(也許)比我更明確: 1 =>製作地圖的命令列表中,每個鍵應該運行: - 「myVoidWithArgs(ARG1,ARG2)」 - 「myOtherVoidWithArgs(arg1,arg2)」 -etc。 (ARG

    2熱度

    1回答

    我一直在研究由人編寫的例子Java代碼,面對下面的代碼片段: Runnable runnable =() -> System.out.println("Thread name: " + Thread.currentThread().getName()); Executor executor; executor = Runnable::run; executor.execute(runna

    0熱度

    1回答

    我試圖找到一種方法讓一個線程運行2秒,另一個運行3秒。我正在使用以下可運行的代碼: private Runnable setLocation, checkWriteAttempt; { setLocation = new Runnable() { @Override public void run() { // Get Location

    0熱度

    2回答

    我現在正在學習Runnable,並且對我發現的代碼以及它的運行方式有點困惑。 j = 0; public Runnable test = new Runnable() { @Override public void run() { if (j <= 4) { //this is an if statement. shouldn't it run only onc

    0熱度

    2回答

    我想在執行new Thread的行時開始一個新的線程。我這樣做: new Thread (new Runnable() { @Override public void run() { ..... } }).start(); //other code continues here 當代碼來到新的線程行它跳轉到執行其他代碼。爲什麼?

    -2熱度

    2回答

    我想爲報警應用程序創建多個Runnable對象,它將在用戶指定的時間內執行任務。 我嘗試做內環路這樣的: ScheduledExecutorService wait; List<Runnable> listens = new ArrayList<>(); int i; private void playAlarmOnInit(){ wait = Executors.newScheduled

    1熱度

    2回答

    我在這裏有點新。 所以基本上,我正在製作一個應用程序,顯示在一定區域和我的xml代碼中可用的餐廳我有多個TextViews通知餐館是否打開或關閉。 我試圖在onCreate方法中獲取當前的日期和小時,並更改textView(如下所示)。 TextView restaurant = (TextView) findViewById (R.id.openTag); int hour = new Tim

    1熱度

    1回答

    我在這裏閱讀了許多線程,討論如何在運行時獲取視圖大小,但沒有解決方案爲我工作。 GameScreen.java public class GameScreen extends AppCompatActivity{ // Declare an instance of SnakeView GameView snakeView; SurfaceHolder surface; @Overri