/* * Copyright (C) 2017 The Android Open Source Project * * 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.googlecode.android_scripting; import android.content.Context; import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; import android.widget.BaseAdapter; import android.widget.ImageView; import android.widget.LinearLayout; import android.widget.TextView; import java.io.File; import java.util.List; public abstract class ScriptListAdapter extends BaseAdapter { protected final Context mContext; protected final LayoutInflater mInflater; public ScriptListAdapter(Context context) { mContext = context; mInflater = (LayoutInflater) mContext.getSystemService(Context.LAYOUT_INFLATER_SERVICE); } @Override public int getCount() { return getScriptList().size(); } @Override public Object getItem(int position) { return getScriptList().get(position); } @Override public long getItemId(int position) { return position; } @Override public View getView(int position, View convertView, ViewGroup parent) { LinearLayout container; File script = getScriptList().get(position); if (convertView == null) { container = (LinearLayout) mInflater.inflate(R.layout.list_item, null); } else { container = (LinearLayout) convertView; } ImageView icon = (ImageView) container.findViewById(R.id.list_item_icon); int resourceId; if (script.isDirectory()) { resourceId = R.drawable.folder; } else { resourceId = FeaturedInterpreters.getInterpreterIcon(mContext, script.getName()); if (resourceId == 0) { resourceId = R.drawable.sl4a_logo_32; } } icon.setImageResource(resourceId); TextView text = (TextView) container.findViewById(R.id.list_item_title); text.setText(getScriptList().get(position).getName()); return container; } protected abstract List getScriptList(); }