这段代码有什么问题?

时间:2010-10-25 06:10:47

标签: java android listview android-asynctask android-sdk-1.6

很抱歉,我正在问这样一个问题,但我试着让这个问题运行几个小时,而且我没有发现错误......

public class Main extends ListActivity {
/** Called when the activity is first created. */

ProgressDialog dialog;

@Override
public synchronized void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);     
    new WebLoader().doInBackground("http://sample.sample.com/sample.xml");
}

public class WebLoader extends AsyncTask<String, Void, String> {

    @Override
    protected String doInBackground(String... params) {
        String result = "";

        try{
            URL url = new URL(params[0]);
            URLConnection conn = url.openConnection();
            InputStream is = conn.getInputStream();
            BufferedInputStream bis = new BufferedInputStream(is);
            ByteArrayBuffer baf = new ByteArrayBuffer(2048);

            int current = 0;
            while((current = bis.read()) != -1)
            {
                baf.append((byte)current);
            }

            result = new String(baf.toByteArray());
        }

        catch(Exception e)
        {
            Log.e("gullinews", e.getMessage());
        }


        return result;
    }

    @Override
    protected void onPostExecute(String result) {
        dialog.dismiss();
    }

    @Override
    protected void onPreExecute() {
        dialog = ProgressDialog.show(getApplicationContext(), "", 
                "Loading. Please wait...", true);
    }     
  }

}

使用调试器运行显示,xml数据已下载,但只有黑屏。当我尝试“setContenView(R.layout.main);”使用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"
    >
    <ListView android:layout_width="fill_parent"
          android:layout_height="fill_parent"
          android:id="@android:id/list" />
</LinearLayout>

//编辑: 好吧,我解决了一个错误,没有解决剩下的问题。来源更新。

我现在的主要问题是,我没有理解为什么ProgressDialog没有显示出来。休息应该是黑色的,这是对的。

1 个答案:

答案 0 :(得分:0)

new WebLoader().doInBackground("http://sample.sample.com/sample.xml");

这不是你如何使用asynctask。你有没有读过任何文件?