/* * Copyright (C) 2009 Teleca Poland Sp. z o.o. <android@teleca.com> * * 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 com.teleca.jamendo.adapter; import com.teleca.jamendo.widget.MyImageView; import com.teleca.jamendo.R; import android.app.Activity; import android.view.View; import android.view.ViewGroup; import android.widget.GridView; public class AlbumGridAdp extends AlbumAdp { int mAlbumSize; public AlbumGridAdp(Activity context) { super(context); mAlbumSize = (int)context.getResources().getDimension(R.dimen.album_size); } @Override public View getView(int position, View convertView, ViewGroup parent) { MyImageView i; if (convertView == null) { i = new MyImageView(activity); i.setScaleType(MyImageView.ScaleType.FIT_CENTER); i.setLayoutParams(new GridView.LayoutParams(mAlbumSize, mAlbumSize)); } else { i = (MyImageView) convertView; } i.setDefaultImage(R.drawable.no_cd_125); i.setImageUrl(mList.get(position).getImage()); return i; } /** * Class implementing holder pattern, * performance boost * * @author Lukasz Wisniewski */ static class ViewHolder { MyImageView image; } }