summaryrefslogtreecommitdiffstats
path: root/sl4a/ScriptingLayerForAndroid/src/com/googlecode/android_scripting/ScriptListAdapter.java
blob: d1e6f655beb196719773863bf4c343e6aa92eb0c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
/*
 * Copyright (C) 2016 Google Inc.
 *
 * 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<File> getScriptList();
}