Android Open Source - FluidGridAdapter Image Data






From Project

Back to project page FluidGridAdapter.

License

The source code is released under:

Apache License

If you think the Android project FluidGridAdapter 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 Cluster Labs, Inc./*from w w  w.ja v  a2  s .c om*/
 *
 * 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.getcluster.models;

public class ImageData {
  private String imageUrl;
  private float aspectRatio;
  private int width;
  private int height;

  public ImageData(String imageUrl, float aspectRatio) {
    setImageUrl(imageUrl);
    setAspectRatio(aspectRatio);
  }

  public ImageData(String imageUrl, int width, int height) {
    setImageUrl(imageUrl);
    this.width = width;
    this.height = height;
    float ar = (float)width / height;
    setAspectRatio(ar);
  }

  public String getImageUrl() {
    return imageUrl;
  }

  public void setImageUrl(String imageUrl) {
    this.imageUrl = imageUrl;
  }

  public float getAspectRatio() {
    return aspectRatio;
  }

  public void setAspectRatio(float aspectRatio) {
    this.aspectRatio = aspectRatio;
  }

  public int getWidth() {
    return width;
  }

  public int getHeight() {
    return height;
  }

}




Java Source Code List

com.getcluster.adapter.FluidGridAdapter.java
com.getcluster.fluidgridsample.DevicePhotosSampleActivity.java
com.getcluster.models.FluidPhotoRow.java
com.getcluster.models.ImageData.java