Android Open Source - paged-listview Custom Activity






From Project

Back to project page paged-listview.

License

The source code is released under:

MIT License

If you think the Android project paged-listview listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

Java Source Code

package com.github.alexkolpa.pagedlistview.sample;
//from w w w.j a va2  s  .  c om
import android.os.Bundle;

public class CustomActivity extends AbstractPagedActivity {

  @Override
  protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_custom);

    loadListView();

    mListView.setLoadingView(findViewById(R.id.loading_view), false);
  }
}




Java Source Code List

com.github.alexkolpa.pagedlistview.PagedListView.java
com.github.alexkolpa.pagedlistview.sample.AbstractPagedActivity.java
com.github.alexkolpa.pagedlistview.sample.CustomActivity.java
com.github.alexkolpa.pagedlistview.sample.FooterActivity.java
com.github.alexkolpa.pagedlistview.sample.MainActivity.java
com.github.alexkolpa.pagedlistview.sample.MyPageable.java