Android Open Source - npr-android-app Playlist Activity






From Project

Back to project page npr-android-app.

License

The source code is released under:

Apache License

If you think the Android project npr-android-app 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

// Copyright 2009 Google Inc.
///*from   w  w w . ja va2  s.  c  om*/
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

package org.npr.android.news;

import android.app.Activity;
import android.content.Intent;
import android.database.Cursor;
import android.os.Bundle;
import android.util.Log;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.AdapterView;
import android.widget.Button;
import android.widget.CompoundButton;
import android.widget.ListAdapter;
import android.widget.ListView;
import android.widget.RadioButton;
import android.widget.SimpleCursorAdapter;
import android.widget.AdapterView.OnItemClickListener;
import android.widget.CompoundButton.OnCheckedChangeListener;

import org.npr.android.util.PlaylistProvider;
import org.npr.android.util.Tracker;
import org.npr.android.util.PlaylistProvider.Items;
import org.npr.android.util.Tracker.ActivityMeasurement;

public class PlaylistActivity extends Activity implements OnClickListener,
    OnCheckedChangeListener, OnItemClickListener, Trackable {
  private static final String LOG_TAG = PlaylistActivity.class.getName();
  private boolean filterUnread = true;

  @Override
  protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.playlist);
    Button clearButton = (Button) findViewById(R.id.PlaylistClear);
    RadioButton unreadButton = (RadioButton) findViewById(R.id.RadioButton01);
    RadioButton readButton = (RadioButton) findViewById(R.id.RadioButton02);
    clearButton.setOnClickListener(this);

    unreadButton.setChecked(filterUnread);
    readButton.setChecked(!filterUnread);

    unreadButton.setOnCheckedChangeListener(this);
    readButton.setOnCheckedChangeListener(this);
    
    refreshList();
    trackNow();
  }

  
  private void refreshList() {
    String[] cols = new String[] {Items.NAME};
    Cursor cursor =
        managedQuery(PlaylistProvider.CONTENT_URI, null,
            Items.IS_READ + " = ?", new String[] {filterUnread ? "0" : "1"},
            Items.PLAY_ORDER);
    Log.d(LOG_TAG, "" + cursor.getCount());
    startManagingCursor(cursor);

    ListAdapter adapter =
        new SimpleCursorAdapter(this, R.layout.playlist_item,
            cursor, cols, new int[] {R.id.PlaylistItemText});

    ListView listView = (ListView) findViewById(R.id.ListView01);
    listView.setAdapter(adapter);
    listView.setOnItemClickListener(this);
  }

  @Override
  public void onClick(View arg0) {
    switch(arg0.getId()) {
      case R.id.PlaylistClear:
        getContentResolver().delete(PlaylistProvider.CONTENT_URI,
            Items.IS_READ + " = ?", new String[] {filterUnread ? "0" : "1"});
        refreshList();
        break;
    }
  }

  @Override
  public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) {
    if (!isChecked) {
      return;
    }
    switch(buttonView.getId()) {
      case R.id.RadioButton01:
        filterUnread = isChecked;
        refreshList();
        break;
      case R.id.RadioButton02:
        filterUnread = !isChecked;
        refreshList();
        break;
    }
    trackNow();
  }

  @Override
  public void onItemClick(AdapterView<?> parent, View view, int position,
      long id) {
    Cursor c = (Cursor) parent.getItemAtPosition(position);
    if (c != null) {
      c.moveToPosition(position);
      long playlistId = c.getLong(c.getColumnIndex(Items._ID));
      Log.d(LOG_TAG, "clicked on position " + position + ", id " + playlistId);
    }
    // TODO: play audio
    finish();
  }


  @Override
  public void trackNow() {
    StringBuilder pageName = new StringBuilder("Playlist");
    String description = filterUnread ? "Active" : "Listened To";
    pageName.append(Tracker.PAGE_NAME_SEPARATOR).append(description);
    Tracker.instance(getApplication()).trackPage(
        new ActivityMeasurement(pageName.toString(), "Playlist"));
  }
}




Java Source Code List

org.npr.android.news.AboutActivity.java
org.npr.android.news.Constants.java
org.npr.android.news.DownloadDrawable.java
org.npr.android.news.EditPreferences.java
org.npr.android.news.ListenView.java
org.npr.android.news.Main.java
org.npr.android.news.NewsListActivity.java
org.npr.android.news.NewsListAdapter.java
org.npr.android.news.NewsStoryActivity.java
org.npr.android.news.NewsTopicActivity.java
org.npr.android.news.PlaybackService.java
org.npr.android.news.PlayerActivity.java
org.npr.android.news.PlaylistActivity.java
org.npr.android.news.PodcastActivity.java
org.npr.android.news.Refreshable.java
org.npr.android.news.SearchActivity.java
org.npr.android.news.SearchResultsActivity.java
org.npr.android.news.StationDetailsActivity.java
org.npr.android.news.StationListActivity.java
org.npr.android.news.StationListAdapter.java
org.npr.android.news.StationSearchActivity.java
org.npr.android.news.StreamProxy.java
org.npr.android.news.Trackable.java
org.npr.android.util.Eula.java
org.npr.android.util.FileUtils.java
org.npr.android.util.M3uParser.java
org.npr.android.util.NodeUtils.java
org.npr.android.util.PlaylistEntry.java
org.npr.android.util.PlaylistParser.java
org.npr.android.util.PlaylistProvider.java
org.npr.android.util.PlsParser.java
org.npr.android.util.Tracker.java
org.npr.android.util.TypefaceCache.java
org.npr.api.ApiConstants.java
org.npr.api.ApiElement.java
org.npr.api.Client.java
org.npr.api.IterableNodeList.java
org.npr.api.Podcast.java
org.npr.api.Program.java
org.npr.api.Station.java
org.npr.api.StoryGrouping.java
org.npr.api.Story.java
org.npr.api.Topic.java