我想要一些关于线程创建和在android中调用线程的简单示例。
Answers:
这是一个很好的教程:
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
另一个关于过程和线程
http://developer.android.com/guide/components/processes-and-threads.html
这是一个简单的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>