If you think the Android project remoteyourcam-usb listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
Java Source Code
/**
* Copyright 2013 Nils Assbeck, Guersel Ayaz and Michael Zoech
*/*www.java2s.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.remoteyourcam.usb.view;
import java.util.ArrayList;
import java.util.List;
import android.content.Context;
import android.graphics.Bitmap;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.BaseAdapter;
import android.widget.ImageView;
import android.widget.TextView;
import com.remoteyourcam.usb.R;
publicclass ThumbnailAdapter extends BaseAdapter {
privatefinal List<Integer> handles = new ArrayList<Integer>(10);
privatefinal List<Bitmap> thumbnails = new ArrayList<Bitmap>(10);
privatefinal List<String> filenames = new ArrayList<String>(10);
privatefinal LayoutInflater inflater;
privateboolean visibleFilename;
privateint maxNumPictures;
public ThumbnailAdapter(Context context) {
inflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
}
publicvoid setShowFilename(boolean visible) {
this.visibleFilename = visible;
notifyDataSetChanged();
}
publicvoid setMaxNumPictures(int maxNumPictures) {
this.maxNumPictures = maxNumPictures;
checkListSizes();
notifyDataSetChanged();
}
privatevoid checkListSizes() {
while (handles.size() > maxNumPictures) {
handles.remove(0);
thumbnails.get(0).recycle();
thumbnails.remove(0);
filenames.remove(0);
}
}
publicvoid addFront(int objectHandle, String filename, Bitmap thumbnail) {
if (maxNumPictures == 0) {
if (thumbnail != null) {
thumbnail.recycle();
}
return;
}
for (Integer i : handles) {
if (i == objectHandle) {
return;
}
}
handles.add(objectHandle);
thumbnails.add(thumbnail);
filenames.add(filename);
checkListSizes();
notifyDataSetChanged();
}
@Override
publicint getCount() {
return handles.size();
}
@Override
public Bitmap getItem(int position) {
return thumbnails.get(thumbnails.size() - 1 - position);
}
publicint getItemHandle(int position) {
return handles.get(handles.size() - 1 - position);
}
private String getItemFilename(int position) {
return filenames.get(filenames.size() - 1 - position);
}
@Override
publiclong getItemId(int position) {
return position;
}
@Override
public View getView(int position, View convertView, ViewGroup parent) {
View view = convertView;
if (view == null) {
view = inflater.inflate(R.layout.thumbnail_list_item, parent, false);
}
ImageView image = (ImageView) view.findViewById(R.id.image1);
image.setImageBitmap(getItem(position));
TextView text = (TextView) view.findViewById(android.R.id.text1);
if (visibleFilename) {
text.setText(getItemFilename(position));
}
text.setVisibility(visibleFilename ? View.VISIBLE : View.GONE);
return view;
}
}