Back to project page Flym.
The source code is released under:
GNU General Public License
If you think the Android project Flym listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
/** * Flym// www . j a v a 2 s.c om * * Copyright (c) 2012-2013 Frederic Julian * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. * */ package net.fred.feedex.activity; import android.os.Bundle; import android.support.v7.widget.Toolbar; import android.view.MenuItem; import android.view.View; import android.widget.CheckBox; import net.fred.feedex.R; import net.fred.feedex.provider.FeedDataContentProvider; import net.fred.feedex.utils.UiUtils; import java.util.Locale; public class AddGoogleNewsActivity extends BaseActivity { private static final int[] TOPIC_NAME = new int[]{R.string.google_news_top_stories, R.string.google_news_world, R.string.google_news_business, R.string.google_news_technology, R.string.google_news_entertainment, R.string.google_news_sports, R.string.google_news_science, R.string.google_news_health}; private static final String[] TOPIC_CODES = new String[]{null, "w", "b", "t", "e", "s", "snc", "m"}; private static final int[] CB_IDS = new int[]{R.id.cb_top_stories, R.id.cb_world, R.id.cb_business, R.id.cb_technology, R.id.cb_entertainment, R.id.cb_sports, R.id.cb_science, R.id.cb_health}; @Override protected void onCreate(Bundle savedInstanceState) { UiUtils.setPreferenceTheme(this); super.onCreate(savedInstanceState); setResult(RESULT_CANCELED); setContentView(R.layout.activity_add_google_news); Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar); setSupportActionBar(toolbar); getSupportActionBar().setDisplayHomeAsUpEnabled(true); } @Override public boolean onOptionsItemSelected(MenuItem item) { if (item.getItemId() == android.R.id.home) { finish(); return true; } return false; } public void onClickOk(View view) { for (int topic = 0; topic < TOPIC_NAME.length; topic++) { if (((CheckBox) findViewById(CB_IDS[topic])).isChecked()) { String url = "http://news.google.com/news?hl=" + Locale.getDefault().getLanguage() + "&output=rss"; if (TOPIC_CODES[topic] != null) { url += "&topic=" + TOPIC_CODES[topic]; } FeedDataContentProvider.addFeed(this, url, getString(TOPIC_NAME[topic]), true); } } setResult(RESULT_OK); finish(); } public void onClickCancel(View view) { finish(); } }