2
我想在加載列表像下面的圖像之前顯示進度條。我的課程使用AsyncTask擴展了SherlockListFragment。我瞪了很多,但沒有得到適當的信息來實現進度條。任何人都可以幫助我如何實現像下面的圖像進度條。如何在列表片段中使用AsyncTask實現進度條?
在此先感謝。
圖像1
以下是我的課
public class Residential extends SherlockListFragment {
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,Bundle saved) {
View view = inflater.inflate(R.layout.residential_list,container, false);
resListviewId = (ListView)view.findViewById(android.R.id.list);
projectList = new ArrayList<HashMap<String,String>>();
new LoadProjects().execute();
return view;
}
public void onStart() {
super.onStart();
}
//inner class for network operation
private class LoadProjects extends AsyncTask<String, String, String> {
@Override
protected void onPreExecute() {
super.onPreExecute();
}
@Override
protected String doInBackground(String... params) {
return null;
}
@Override
protected void onPostExecute(String result) {
ListAdapter projAdapter = new SimpleAdapter(getSherlockActivity(),
projectList, R.layout.residential_list_item,
new String[] {PROJ_ID,PROJ_NAME}, new int[]
{R.id.projectId,R.id.projectName});
//updating the UI
setListAdapter(projAdapter);
}
}
}
以下是progressbar.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/projectLinearLayout"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:gravity="center_horizontal"
android:padding="10dp"
android:visibility="gone">
<ProgressBar
android:id="@+id/projectprogressBar"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_vertical" />
<TextView
android:id="@+id/projectProgressTxtvw"
android:text="@string/Loading"
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>
</LinearLayout>
感謝您的幫助,我會嘗試這一點,但這種裝載機我能需要10個圖像和你不需要在showLoader中編寫runOnUiThread,因爲onPreExecute和onPostExecute已經在uiThread上運行。 – 2013-05-02 10:36:48
謝謝我知道runOnUiTread不需要onPreEx實際上我在我的BaseActivity類中使用了這兩個方法,這是我的項目中所有屏幕的通用框架。請符合我是否真的有用。試着在iconfinder中準備10張循環流的其他副搜索圖像。 – user2342404 2013-05-03 12:31:17