Added loading footer on paginate screen

This commit is contained in:
Sanjiv Jha 2015-12-19 20:18:28 +05:30
parent 63c0316af2
commit fdbeaf8692
2 changed files with 38 additions and 0 deletions

View File

@ -9,6 +9,7 @@ import android.os.Handler;
import android.preference.PreferenceManager;
import android.support.v4.app.ListFragment;
import android.util.Log;
import android.view.LayoutInflater;
import android.view.View;
import android.widget.AbsListView;
import android.widget.ListView;
@ -63,6 +64,8 @@ public class VideoItemListFragment extends ListFragment {
private int currentRequestId = -1;
private ListView list;
private View footer;
private class ResultRunnable implements Runnable {
private final SearchEngine.Result result;
private final int requestId;
@ -112,6 +115,16 @@ public class VideoItemListFragment extends ListFragment {
}
});
}
getActivity().runOnUiThread(new Runnable() {
@Override
public void run() {
getListView().removeFooterView(footer);
}
}
);
}
}
@ -283,6 +296,9 @@ public class VideoItemListFragment extends ListFragment {
super.onViewCreated(view, savedInstanceState);
list = getListView();
videoListAdapter = new VideoListAdapter(getActivity(), this);
footer = ((LayoutInflater) getActivity().getSystemService(Context.LAYOUT_INFLATER_SERVICE)).inflate(R.layout.paginate_footer, null, false);
setListAdapter(videoListAdapter);
// Restore the previously serialized activated item position.
@ -292,6 +308,7 @@ public class VideoItemListFragment extends ListFragment {
setActivatedPosition(savedInstanceState.getInt(STATE_ACTIVATED_POSITION));
}
getListView().setOnScrollListener(new AbsListView.OnScrollListener() {
long lastScrollDate = 0;
@ -308,6 +325,7 @@ public class VideoItemListFragment extends ListFragment {
long time = System.currentTimeMillis();
if ((time - lastScrollDate) > 200) {
lastScrollDate = time;
getListView().addFooterView(footer);
nextPage();
}
}

View File

@ -0,0 +1,20 @@
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center_horizontal"
android:orientation="vertical">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Loading"
android:textAppearance="?android:attr/textAppearanceMedium" />
<ProgressBar
android:id="@+id/paginate_progress_bar"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginRight="10dp" />
</LinearLayout>