Android 开发中的  AsyncTask 的用法记录

边做边学吧。 

-----------------------layout/async.xml--------------------------------

 
    android:orientation="vertical"  
    android:layout_width="fill_parent"  
    android:layout_height="fill_parent"  
    >  
            android:id="@+id/text"    
        android:layout_width="fill_parent"   
        android:layout_height="wrap_content"   
        android:text="@string/hello"  
        />  
                    android:id="@+id/text2"    
        android:layout_width="fill_parent"   
        android:layout_height="wrap_content"   
        android:text="@string/hello"  
        />
   

你可能感兴趣的:(android)