Back to project page js-android-sdk.
The source code is released under:
GNU Lesser General Public License
If you think the Android project js-android-sdk listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
/* * Copyright (C) 2012 Jaspersoft Corporation. All rights reserved. * http://community.jaspersoft.com/project/mobile-sdk-android */*from w w w .j av a 2 s . c o m*/ * Unless you have purchased a commercial license agreement from Jaspersoft, * the following license terms apply: * * This program is part of Jaspersoft Mobile SDK for Android. * * Jaspersoft Mobile SDK is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * Jaspersoft Mobile SDK 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 Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with Jaspersoft Mobile SDK for Android. If not, see * <http://www.gnu.org/licenses/lgpl>. */ package com.jaspersoft.android.sdk.ui.adapters; import android.content.Context; import android.graphics.drawable.Drawable; import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; import android.widget.ArrayAdapter; import android.widget.ImageView; import android.widget.TextView; import com.jaspersoft.android.sdk.client.oxm.ResourceDescriptor; import com.jaspersoft.android.sdk.ui.R; import java.util.List; /** * A concrete ArrayAdapter that is backed by an array of ResourceDescriptor objects. * * @author Ivan Gadzhega * @since 1.0 */ public class ResourceDescriptorArrayAdapter extends ArrayAdapter<ResourceDescriptor>{ private final Context context; private final List<ResourceDescriptor> resourceDescriptors; public ResourceDescriptorArrayAdapter(Context context, List<ResourceDescriptor> resourceDescriptors) { super(context, R.layout.resource_list_item, resourceDescriptors); this.context = context; this.resourceDescriptors = resourceDescriptors; } @Override public View getView(int position, View convertView, ViewGroup parent) { LayoutInflater inflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE); View rowView = inflater.inflate(R.layout.resource_list_item, parent, false); ImageView image = (ImageView) rowView.findViewById(R.id.resource_list_item_icon); TextView label = (TextView) rowView.findViewById(R.id.resource_list_item_label); TextView uri = (TextView) rowView.findViewById(R.id.resource_list_item_uri); ResourceDescriptor resourceDescriptor = resourceDescriptors.get(position); Drawable drawable; switch (resourceDescriptor.getWsType()) { case folder: drawable = context.getResources().getDrawable(R.drawable.ic_type_folder); break; case reportUnit: drawable = context.getResources().getDrawable(R.drawable.ic_type_report); break; case dashboard: drawable = context.getResources().getDrawable(R.drawable.ic_type_dashboard); break; case img: drawable = context.getResources().getDrawable(R.drawable.ic_type_image); break; case css: case xml: drawable = context.getResources().getDrawable(R.drawable.ic_type_text); break; default: // for an unknown resource drawable = context.getResources().getDrawable(R.drawable.ic_type_unknown); break; } image.setImageDrawable(drawable); label.setText(resourceDescriptor.getLabel()); uri.setText(resourceDescriptor.getUriString()); return rowView; } }