我没有复制所有代码,因为它太长了,但要简洁:
我有一个函数(recup_list_internet),其中有一个线程,它从互联网(XML)检索数据,对其进行解码,并将每个“节点”分配给我的适配器中的一个元素。
在线程外进行解码时,一切正常。所以我修改它以在线程内使用,在其中创建一个 void run() 函数,显示我的progressDialog,解码,数据被很好地检索,很好地分配给我的地图(=new HashMap();),这里是出现问题
private void recup_list_internet()
{
final ArrayList<HashMap<String, String>> listItem = new ArrayList<HashMap<String, String>>();
final Context mContext=this.getBaseContext();
Thread t = new Thread()
{
public void run()
{/* the code here works fine, not displaying it to be more concise*/
progressDialog.dismiss(); //works fine
SimpleAdapter mSchedule = new SimpleAdapter (mContext, listItem, R.layout.affiche_boutique,new String[] {"img", "titre", "description","Prix","uniqueID"}, new int[] {R.id.img,R.id.titre, R.id.description,R.id.prix,R.id.uniqueID}); //works fine
maListViewPerso.setAdapter(mSchedule); //doesn't work
}
};
t.start();
}
这是我的日志猫:
11-04 19:20:33.070: E/recuperation phonster(546): android.view.ViewRoot$CalledFromWrongThreadException: Only the original thread that created a view hierarchy can touch its views.
似乎我无法在我的线程中“访问”maListViewPero ...(maListViewPerso 之前在我的 onCreate 代码中定义:
public class DisplayInternet extends Activity{
private ListView maListViewPerso;
public void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
setContentView(R.layout.ceinture_lv);
maListViewPerso = (ListView) findViewById(R.id.listviewperso);
recup_list_internet();
}
那么我可以把这条线放在哪里让它工作呢?“maListViewPerso.setAdapter(mSchedule);”
因为我已经尝试在我的线程之外(最终)声明 mSchedule 但在我的线程内,我无法访问它(因此,我无法在“t.start()”行之后使用它