/* This file is part of Subsonic. Subsonic 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. Subsonic 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 Subsonic. If not, see <http://www.gnu.org/licenses/>. Copyright 2009 (C) Sindre Mehus */ package github.madmarty.madsonic.util; import android.content.Context; import android.view.LayoutInflater; import android.view.View; import android.widget.ImageButton; import android.widget.LinearLayout; import android.widget.TextView; import github.madmarty.madsonic.R; import github.madmarty.madsonic.activity.SubsonicTabActivity; import github.madmarty.madsonic.domain.MusicDirectory; /** * Used to display albums in a {@code ListView}. * * @author Sindre Mehus */ public class AlbumView extends LinearLayout { private MusicDirectory.Entry album; private TextView titleView; private TextView artistView; private View coverArtView; private ImageButton starButton; public AlbumView(Context context) { super(context); LayoutInflater.from(context).inflate(R.layout.album_list_item, this, true); titleView = (TextView) findViewById(R.id.album_title); artistView = (TextView) findViewById(R.id.album_artist); coverArtView = findViewById(R.id.album_coverart); View moreView = findViewById(R.id.album_more); moreView.setOnClickListener(new OnClickListener() { @Override public void onClick(View view) { AlbumView.this.showContextMenu(); } }); starButton = (ImageButton) findViewById(R.id.album_star); starButton.setVisibility(Util.isOffline(getContext()) ? View.GONE : View.VISIBLE); starButton.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { SubsonicTabActivity activity = (SubsonicTabActivity) getContext(); activity.toggleStarredInBackground(album, starButton); } }); } public void setAlbum(MusicDirectory.Entry album, ImageLoader imageLoader) { this.album = album; titleView.setText(album.getTitle()); artistView.setText(album.getArtist()); artistView.setVisibility(album.getArtist() == null ? View.GONE : View.VISIBLE); imageLoader.loadImage(coverArtView, album, false, true); starButton.setImageResource(album.isStarred() ? android.R.drawable.btn_star_big_on : android.R.drawable.btn_star_big_off); starButton.setFocusable(false); } }