com.lgallardo.qbittorrentclient.RSSItemActivity.java Source code

Java tutorial

Introduction

Here is the source code for com.lgallardo.qbittorrentclient.RSSItemActivity.java

Source

/*
 *   Copyright (c) 2014-2015 Luis M. Gallardo D.
 *   All rights reserved. This program and the accompanying materials
 *   are made available under the terms of the GNU Lesser General Public License v3.0
 *   which accompanies this distribution, and is available at
 *   http://www.gnu.org/licenses/lgpl.html
 *
 */

package com.lgallardo.qbittorrentclient;

import android.content.Intent;
import android.net.Uri;
import android.os.Build;
import android.os.Bundle;
import android.support.v4.widget.SwipeRefreshLayout;
import android.support.v7.app.AppCompatActivity;
import android.support.v7.widget.Toolbar;
import android.util.Log;
import android.view.Menu;
import android.view.MenuItem;
import android.view.View;
import android.widget.AdapterView;
import android.widget.ListView;

import com.google.android.gms.ads.AdRequest;
import com.google.android.gms.ads.AdView;

import java.io.UnsupportedEncodingException;
import java.net.URLDecoder;
import java.util.ArrayList;

public class RSSItemActivity extends AppCompatActivity {

    Toolbar toolbar;
    public static SwipeRefreshLayout mSwipeRefreshLayout;
    public static int rssChannelPosition;
    public static RSSFeedItemListAdapter myItemsAdapter;
    private AdView adView;

    // Values from RSSFeedActivity (intent)
    private String packageName;
    private boolean dark_ui;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);

        // If it were awaken from an intent-filter,
        // get intent from the intent filter and Add URL torrent
        handleIntent(getIntent());

        // Set Theme (It must be fore inflating or setContentView)
        if (dark_ui) {
            this.setTheme(R.style.Theme_Dark);

            if (Build.VERSION.SDK_INT >= 21) {
                getWindow().setNavigationBarColor(getResources().getColor(R.color.Theme_Dark_toolbarBackground));
                getWindow().setStatusBarColor(getResources().getColor(R.color.Theme_Dark_toolbarBackground));
            }
        } else {
            this.setTheme(R.style.Theme_Light);

            if (Build.VERSION.SDK_INT >= 21) {
                getWindow().setNavigationBarColor(getResources().getColor(R.color.primary));
            }

        }

        setContentView(R.layout.activity_rssitem);

        toolbar = (Toolbar) findViewById(R.id.app_bar);

        if (dark_ui) {
            toolbar.setBackgroundColor(getResources().getColor(R.color.Theme_Dark_primary));

            // Force backgroud (for some weird reason this activity is not taking the dark background)

            // Find the root view
            View root = toolbar.getRootView();

            // Set the color
            root.setBackgroundColor(getResources().getColor(R.color.Theme_Dark_windowBackground));
        }

        setSupportActionBar(toolbar);

        getSupportActionBar().setDisplayHomeAsUpEnabled(true);
        getSupportActionBar().setHomeButtonEnabled(false);

        // Set App title
        setTitle(R.string.action_rss);

        Intent intent = getIntent();

        if (intent != null) {
            rssChannelPosition = intent.getIntExtra("position", 0);
        }

        try {
            // Get Channel Feed
            RSSFeed rssFeed = (RSSFeedActivity.myadapter.getRssChannels()).get(rssChannelPosition);

            ArrayList<RSSFeedItem> items = rssFeed.getItems();

            //        Log.d("Debug", "Items size: " + items.size());
            //
            //        for(int i=0; i < items.size(); i++){
            //
            //            Log.d("Debug", "Item Title: " + items.get(i).getTitle());
            //        }

            // Get ListView object from xml
            ListView listView = (ListView) findViewById(R.id.items_list);

            // Listener for listview
            listView.setOnItemClickListener(new AdapterView.OnItemClickListener() {
                @Override
                public void onItemClick(AdapterView<?> av, View v, int pos, long id) {
                    onListItemClick(v, pos, id);
                }
            });

            myItemsAdapter = new RSSFeedItemListAdapter(this, items);

            listView.setAdapter(myItemsAdapter);
        } catch (Exception e) {
            Log.d("Debug", "Cannot load RSSfeed");
        }

        // Load Ads
        loadBanner();

    }

    @Override
    protected void onNewIntent(Intent intent) {

        handleIntent(intent);
    }

    private void handleIntent(Intent intent) {

        rssChannelPosition = 0;

        if (intent != null) {
            rssChannelPosition = intent.getIntExtra("position", 0);

            // Get package name
            packageName = intent.getStringExtra("packageName");

            // Get theme UI preference
            dark_ui = intent.getBooleanExtra("dark_ui", false);
        }

    }

    private void onListItemClick(View v, int pos, long id) {
        //        Log.i("Debug", "RSS Item - onListItemClick id=" + id);
        //        Log.i("Debug", "RSS Item - onListItemClick pos=" + pos);

        RSSFeedItem item = myItemsAdapter.getItems().get(pos);

        String url = item.getTorrentUrl();

        //        Log.i("Debug", "RSS Item - Title =" + item.getTitle());
        //        Log.i("Debug", "RSS Item - Torrent URL =" + url);
        //        Log.i("Debug", "RSS Item - PubDate =" + item.getPubDate());

        // Decode url link
        try {
            url = URLDecoder.decode(url, "UTF-8");
        } catch (UnsupportedEncodingException e) {
            Log.e("Debug", "RSSFeedParser - decoding error: " + e.toString());
        }

        Uri uri = Uri.parse(url);

        // Send torrent to qBittorrent App
        Intent intent = new Intent(getBaseContext(), com.lgallardo.qbittorrentclient.MainActivity.class);

        //        // Send torrent to generic torrent app
        //        Intent intent = new Intent(Intent.ACTION_VIEW);

        intent.setData(uri);

        intent.putExtra("from", "RSSItemActivity");
        startActivity(intent);

    }

    @Override
    public boolean onCreateOptionsMenu(Menu menu) {
        // Inflate the menu; this adds items to the action bar if it is present.
        //        getMenuInflater().inflate(R.menu.menu_rssitem, menu);
        return true;
    }

    @Override
    public boolean onOptionsItemSelected(MenuItem item) {
        // Handle action bar item clicks here. The action bar will
        // automatically handle clicks on the Home/Up button, so long
        // as you specify a parent activity in AndroidManifest.xml.

        switch (item.getItemId()) {
        case android.R.id.home:
            finish();
            return true;
        default:
            return super.onOptionsItemSelected(item);
        }
    }

    // Load Banner
    public void loadBanner() {

        try {
            if (packageName.equals("com.lgallardo.qbittorrentclient")) {

                // Look up the AdView as a resource and load a request.
                adView = (AdView) this.findViewById(R.id.adViewRssItem);
                AdRequest adRequest = new AdRequest.Builder().build();

                // Start loading the ad in the background.
                adView.loadAd(adRequest);
            }
        } catch (Exception e) {
            Log.e("Debug", e.getMessage());
        }
    }

}