Created
September 23, 2016 18:34
-
-
Save Nazmul56/2335cb1e0bafbb44f86c91d2b641d0cb to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.weblinkstech.newhindivideosongs; | |
import com.weblinkstech.newhindivideosongs.wordpress.ui.WordpressFragment; | |
import java.util.ArrayList; | |
import java.util.List; | |
public class Config { | |
public static List<NavItem> configuration() { | |
List<NavItem> i = new ArrayList<NavItem>(); | |
//DONT MODIFY ABOVE THIS LINE | |
i.add(new NavItem("Menu", NavItem.SECTION)); | |
i.add(new NavItem("Latest", R.drawable.ic_details, NavItem.ITEM, WordpressFragment.class, "http://www.newhindivideosongs.in/api/,latest")); | |
i.add(new NavItem("Weekly Top 15", R.drawable.ic_details, NavItem.ITEM, WordpressFragment.class, "http://www.newhindivideosongs.in/api/,weeklytop15")); | |
i.add(new NavItem("Just Added", R.drawable.ic_details, NavItem.ITEM, WordpressFragment.class, "http://www.newhindivideosongs.in/api/")); | |
i.add(new NavItem("Old Hits", R.drawable.ic_details, NavItem.ITEM, WordpressFragment.class, "http://www.newhindivideosongs.in/api/,old-songs")); | |
// | |
// i.add(new NavItem("Latest", R.drawable.ic_details, NavItem.ITEM, WordpressFragment.class, "http://www.desivideosongs.com/api/")); | |
// i.add(new NavItem("Weekly Top 15", R.drawable.ic_details, NavItem.ITEM, WordpressFragment.class, "http://www.desivideosongs.com/api/")); | |
// i.add(new NavItem("Just Added", R.drawable.ic_details, NavItem.ITEM, WordpressFragment.class, "http://www.desivideosongs.com/api/")); | |
// | |
// i.add(new NavItem("Just Added1", R.drawable.ic_details, NavItem.ITEM, RssFragment.class, "http://www.desivideosongs.com/category/latest/")); | |
// | |
// i.add(new NavItem("Just Added2", R.drawable.ic_details, NavItem.ITEM, RssFragment.class, "http://www.desivideosongs.com/category/weeklytop15/")); | |
// | |
// i.add(new NavItem("Rss Podcast", R.drawable.ic_details, NavItem.ITEM, RssFragment.class, "http://feeds.nature.com/nature/podcast/current")); | |
// i.add(new NavItem("WP F My", R.drawable.ic_details, NavItem.ITEM, WordpressFragment.class, "http://www.newhindivideosongs.in/api/")); | |
// i.add(new NavItem("Just Added1", R.drawable.ic_details, NavItem.ITEM, WordpressFragment.class, "http://www.desivideosongs.com/category/latest/")); | |
// | |
// i.add(new NavItem("Just Added2", R.drawable.ic_details, NavItem.ITEM, WordpressFragment.class, "http://www.desivideosongs.com/category/weeklytop15/")); | |
// | |
// i.add(new NavItem("Tip Us", R.drawable.ic_details, NavItem.ITEM, WebviewFragment.class, "http://www.androidpolice.com/contact/")); | |
//// | |
// i.add(new NavItem("Recent Posts", R.drawable.ic_details, NavItem.ITEM, WordpressFragment.class, "http://androidpolice.com/api/")); | |
// i.add(new NavItem("Cat: Conservation", R.drawable.ic_details, NavItem.ITEM, WordpressFragment.class, "http://moma.org/wp/inside_out/api/,conservation")); | |
// | |
// i.add(new NavItem("Wallpaper Tumblr", R.drawable.ic_details, NavItem.ITEM, TumblrFragment.class, "androidbackgrounds")); | |
// i.add(new NavItem("3FM Radio", R.drawable.ic_details, NavItem.ITEM, MediaFragment.class, "http://yp.shoutcast.com/sbin/tunein-station.m3u?id=709809")); | |
// i.add(new NavItem("Radio Idobi", R.drawable.ic_details, NavItem.ITEM, MediaFragment.class, "http://yp.shoutcast.com/sbin/tunein-station.pls?id=195363")); | |
// i.add(new NavItem("Official Twitter", R.drawable.ic_details, NavItem.ITEM, TweetsFragment.class, "Android")); | |
// i.add(new NavItem("Instagram", R.drawable.ic_details, NavItem.ITEM, InstagramFragment.class, "1067259270")); | |
// i.add(new NavItem("Facebook", R.drawable.ic_details, NavItem.ITEM, FacebookFragment.class, "197589525931")); | |
// i.add(new NavItem("Maps", R.drawable.ic_details, NavItem.ITEM, MapsFragment.class, "pharmacy")); | |
// | |
// //It's Suggested to not change the content below this line | |
// | |
// i.add(new NavItem("Device", NavItem.SECTION)); | |
// i.add(new NavItem("Favorites", R.drawable.ic_action_favorite, NavItem.EXTRA, FavFragment.class, null)); | |
// i.add(new NavItem("Settings", R.drawable.ic_action_settings, NavItem.EXTRA, SettingsFragment.class, null)); | |
//DONT MODIFY BELOW THIS LINE | |
return i; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment