developer tip

Android의 스레딩 예제

copycodes 2020. 10. 27. 08:21
반응형

Android의 스레딩 예제


스레드 생성 및 Android에서 스레드 호출에 대한 간단한 예제를 원합니다.


이것은 좋은 튜토리얼입니다.

http://android-developers.blogspot.de/2009/05/painless-threading.html

또는 UI 스레드의 경우 :

http://developer.android.com/guide/faq/commontasks.html#threading

또는 여기에 매우 실용적인 것 :

http://www.androidacademy.com/1-tutorials/43-hands-on/115-threading-with-android-part1

그리고 procceses 및 thread에 대한 또 다른

http://developer.android.com/guide/components/processes-and-threads.html


Android의 강력한 기능 중 하나는 AsyncTask 클래스입니다.

이를 사용하려면 먼저 확장하고 재정의해야합니다 doInBackground(...). doInBackground자동 상태 업데이트에 대한 알림을받을 수있는 작업자 스레드에서 실행, 당신은 UI 스레드에서 일부 청취자를 추가 할 수 있습니다, 이러한 기능이 호출됩니다 onPreExecute(), onPostExecute()그리고onProgressUpdate()

여기 에서 예를 찾을 수 있습니다 .

다른 대안은 아래 게시물을 참조하십시오.

핸들러 대 AsyncTask 대 스레드


다음은 Android 용 간단한 스레딩 예제입니다. 매우 기본적이지만 관점을 얻는 데 도움이 될 것입니다.

Android 코드-Main.java

package test12.tt;

import android.app.Activity;
import android.os.Bundle;
import android.widget.TextView;

public class Test12Activity extends Activity {

    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);
        final TextView txt1 = (TextView) findViewById(R.id.sm);

        new Thread(new Runnable() { 
            public void run(){        
            txt1.setText("Thread!!");
            }
        }).start();

    }    
}

Android 애플리케이션 XML-main.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent">

    <TextView  
    android:id = "@+id/sm"
    android:layout_width="fill_parent" 
    android:layout_height="wrap_content" 
    android:text="@string/hello"/>

</LinearLayout>

참고 URL : https://stackoverflow.com/questions/4722974/threading-example-in-android

반응형