Android Open Source - spring-a-gram-android Photo List Adapter






From Project

Back to project page spring-a-gram-android.

License

The source code is released under:

Apache License

If you think the Android project spring-a-gram-android 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 2014 the original author or authors.
 */*from   w w  w. j a  v  a 2 s  .  c  o  m*/
 * 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.royclarkson.springagram;

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.TextView;

import com.royclarkson.springagram.model.ItemResource;

import java.util.List;


/**
 * @author Roy Clarkson
 */
public class PhotoListAdapter extends BaseAdapter {

  private final List<ItemResource> photos;

  private final LayoutInflater layoutInflater;

  public PhotoListAdapter(Context context, List<ItemResource> photos) {
    this.layoutInflater = LayoutInflater.from(context);
    this.photos = photos;
  }

  @Override
  public int getCount() {
    return this.photos.size();
  }

  @Override
  public ItemResource getItem(int position) {
    return this.photos.get(position);
  }

  @Override
  public long getItemId(int position) {
    return position;
  }

  public View getView(int position, View convertView, ViewGroup parent) {
    ItemResource photo = getItem(position);
    View view = convertView;

    if (view == null) {
      view = this.layoutInflater.inflate(R.layout.photo_list_item, parent, false);
    }

    ImageView thumbnailImageView = (ImageView) view.findViewById(R.id.photo_list_item_thumbnail);
    thumbnailImageView.setImageBitmap(photo.getThumbnail());

    TextView nameTextView = (TextView) view.findViewById(R.id.photo_list_item_name);
    nameTextView.setText(photo.getName());

    return view;
  }

}




Java Source Code List

com.royclarkson.springagram.CheckableLinearLayout.java
com.royclarkson.springagram.GalleryAddFragment.java
com.royclarkson.springagram.GalleryListAdapter.java
com.royclarkson.springagram.GalleryListFragment.java
com.royclarkson.springagram.GalleryPhotoListFragment.java
com.royclarkson.springagram.HomeFragment.java
com.royclarkson.springagram.MainActivity.java
com.royclarkson.springagram.NavigationDrawerFragment.java
com.royclarkson.springagram.PhotoAddFragment.java
com.royclarkson.springagram.PhotoAddToGalleryFragment.java
com.royclarkson.springagram.PhotoAddToGalleryListAdapter.java
com.royclarkson.springagram.PhotoDetailFragment.java
com.royclarkson.springagram.PhotoListAdapter.java
com.royclarkson.springagram.PhotoListFragment.java
com.royclarkson.springagram.RestUtils.java
com.royclarkson.springagram.model.ApiResource.java
com.royclarkson.springagram.model.GalleryResource.java
com.royclarkson.springagram.model.Gallery.java
com.royclarkson.springagram.model.ItemResource.java
com.royclarkson.springagram.model.Item.java
org.springframework.hateoas.hal.ResourceMappingJackson2HttpMessageConverter.java