Android Open Source - Android-Search-ListView-using-Filter World Population






From Project

Back to project page Android-Search-ListView-using-Filter.

License

The source code is released under:

Apache License

If you think the Android project Android-Search-ListView-using-Filter 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.androidbegin.filterlistviewtutorial;
//  w ww  .  ja va 2 s .c  om
public class WorldPopulation {
  private String rank;
  private String country;
  private String population;

  public WorldPopulation(String rank, String country, String population) {
    this.rank = rank;
    this.country = country;
    this.population = population;
  }

  public String getRank() {
    return this.rank;
  }

  public String getCountry() {
    return this.country;
  }

  public String getPopulation() {
    return this.population;
  }
}




Java Source Code List

com.androidbegin.filterlistviewtutorial.ListViewAdapter.java
com.androidbegin.filterlistviewtutorial.MainActivity.java
com.androidbegin.filterlistviewtutorial.SingleItemView.java
com.androidbegin.filterlistviewtutorial.WorldPopulation.java