This app was mentioned in 3 comments, with an average of 118.67 upvotes
I'm a developer an I've created an Android app to visually browse CIA World Factbook data.
World Factbook is a guide prepared by CIA for use by US Government officials, it has lots of interesting facts about economy, population, transport etc for all countries in the world.
The app sorts the countries by value of selected field and displays number value and bar chart where bar width is calculated as a percentage of the value for the topmost country.
https://play.google.com/store/apps/details?id=com.cooldataapps
Any feedback welcome!
EDIT:
Thanks very much for all the feedback! I really appreciate it!
Just published a new version to Play Store which should be available within a few hours with following fixes: - Improvement to side menu display (drawer) - Added country ranking in the List mode - http://imgur.com/z1QDogi - Press and hold on a field to share details via email, watsapp etc
Outstanding problems
Feature requests submitted so far:
Any other ideas please do keep posting! :)
Here is a code from my app that allows you to search country by name with results updated in real-time (https://play.google.com/store/apps/details?id=com.cooldataapps) . Hope it helps
public View onCreateView(....) { Toolbar toolbar = ....; toolbar.inflateMenu(R.menu.main_menu);
Menu menu = toolbar.getMenu(); MenuItem menuItem = menu.findItem(R.id.search); View view = menuItem.getActionView(); SearchView searchView = (SearchView) view; searchView.setQueryHint("Search for ...");
searchView.setOnQueryTextListener(new SearchView.OnQueryTextListener() { @Override public boolean onQueryTextSubmit(String s) { return false; }
@Override public boolean onQueryTextChange(String s) { FILTER DATA HERE AND UPDATE RECYCLERVIEW etc return false; } }); }
/r/dataisbeautiful/ で話題になっていた
I've created Android app to visually browse CIA World Factbook Data [details inside] [OC]
このアプリの作者でトピの主による解説
> 私がこのアプリの開発者で、私が作ったのは CIA の World Factbook Data を視覚的に見るためのアンドロイドアプリです。 > > World Factbookは CIA がアメリカ政府への解説のために用意したもので、世界中の国々の経済、人口、輸送など興味深い様々な側面を見ることが出来ます。 > > このアプリは選択したフィールドの値でソートできますし、数値と、最大値の国の値の割合で計算された幅の棒グラフも表示します。 > > https://play.google.com/store/apps/details?id=com.cooldataapps > > feedback歓迎です。 >