Android
 Computer >> コンピューター >  >> プログラミング >> Android

Androidでスレッドの優先度を設定する方法は?


例に入る前に、スレッドとは何かを知っておく必要があります。スレッドは軽量のサブプロセスであり、UIを中断することなくバックグラウンド操作を実行します。この例では、Androidでスレッドの優先度を設定する方法について説明します。

ステップ1 − Android Studioで新しいプロジェクトを作成し、[ファイル]⇒[新しいプロジェクト]に移動して、新しいプロジェクトを作成するために必要なすべての詳細を入力します。

ステップ2 −次のコードをres / layout/activity_main.xmlに追加します。

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="https://schemas.android.com/apk/res/android"
   xmlns:tools="https://schemas.android.com/tools"
   android:layout_width="match_parent"
   android:layout_height="match_parent"
   android:orientation="vertical"
   android:gravity="center_horizontal"
   android:layout_marginTop="100dp"
   tools:context=".MainActivity">
   <EditText
      android:id="@+id/edit_query"
      android:layout_width="match_parent"
      android:layout_height="wrap_content"
      android:hint="Enter string" />
   <Button
      android:id="@+id/click"
      android:layout_marginTop="50dp"
      style="@style/Base.TextAppearance.AppCompat.Widget.Button.Borderless.Colored"
      android:layout_width="wrap_content"
      android:background="#c1c1c1"
      android:textColor="#FFF"
      android:layout_height="wrap_content"
      android:text="Button" />
   <TextView
      android:id="@+id/text"
      android:layout_width="wrap_content"
      android:layout_height="wrap_content" />
</LinearLayout>

上記のコードでは、edittextとtextviewを使用しています。ユーザーがedittextにテキストを入力すると、5000ミリ秒まで待機し、テキストビューをスレッド名で更新します。

ステップ3 −次のコードをsrc / MainActivity.java

に追加します
package com.example.myapplication;

import android.os.Bundle;
import android.support.v7.app.AppCompatActivity;
import android.view.View;
import android.widget.EditText;
import android.widget.TextView;

public class MainActivity extends AppCompatActivity {
   EditText edit_query;
   TextView textView;
   boolean twice = false;
   Thread t = null;

   @Override
   protected void onCreate(Bundle savedInstanceState) {
      super.onCreate(savedInstanceState);
      setContentView(R.layout.activity_main);
      edit_query = findViewById(R.id.edit_query);
      textView = findViewById(R.id.text);
      findViewById(R.id.click).setOnClickListener(new View.OnClickListener() {
         @Override
         public void onClick(View v) {
            runthread();
         }
      });
   }

   private void runthread() {
      twice = true;
      if (twice) {
         final String s1 = edit_query.getText().toString();
         t = new Thread(new Runnable() {
            @Override
            public void run() {
               runOnUiThread(new Runnable() {
                  @Override
                  public void run() {
                     textView.setText(t.getName());
                     try {
                        Thread.sleep(500);
                        twice = false;
                     } catch (InterruptedException e) {
                        e.printStackTrace();
                     }
                  }
               });
            }
         });
         t.start();
         t.setName(s1);
         t.setPriority(Thread.MAX_PRIORITY);
      }
   }
}

アプリケーションを実行してみましょう。実際のAndroidモバイルデバイスをコンピューターに接続していると思います。 android studioからアプリを実行するには、プロジェクトのアクティビティファイルの1つを開き、ツールバーの[実行]アイコンをクリックします。オプションとしてモバイルデバイスを選択し、デフォルトの画面を表示するモバイルデバイスを確認します-

Androidでスレッドの優先度を設定する方法は?

上記の結果では、編集テキストにテキストを入力してボタンをクリックします。スレッドにデータを追加し、get nameメソッドとしてスレッドからデータを取得し、スレッドの優先度が最も高いtextviewに追加します。


  1. Outlookで電子メールの優先度を高に設定する方法

    見通し は、電子メールメッセージの送受信に使用されるMicrosoftの電子メールクライアントです。 Microsoft Outlookには、ユーザーが電子メールを送信する前に電子メールメッセージの優先度を設定できる機能が付属しています。この機能は、受信者の注意を引き、受信者ができるだけ早くメッセージに返信できるようにする場合に役立ちます。この記事では、Outlookでメールの優先度を設定する方法について説明します。 。 Outlookでメールの優先度を設定する方法 メールの優先度を設定する手順については、次のURLで説明します。 Outlookデスクトップアプリ。 Outlook

  2. Outlook for Android アプリでメールを設定する方法

    Outlook は、何十年にもわたって最も人気のあるメール管理ソリューションの 1 つであり、世界中の複数の個人や企業によって使用されています。コンピューターで電子メールにアクセスするために使用する主要なツールかもしれませんが、スマートフォンについて話すときは確かに同じではありません.しかし、Android スマートフォンで Outlook を構成するのは非常に簡単で、数分で完了します。どのクライアントよりも優れた方法で電子メールを整理するだけでなく、スパマーや犯罪者があなたに到達するのを困難にします.したがって、読者がAndroidでOutlookをセットアップする方法を学ぶことは価値があり