Android Open Source - interamap Item Category






From Project

Back to project page interamap.

License

The source code is released under:

MIT License

If you think the Android project interamap 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

package com.richso.interamap.item;
/*w ww  .  j  a v a 2 s. com*/
import android.graphics.Bitmap;

/**
 * Created with IntelliJ IDEA.
 * User: nikolai
 * Date: 9/15/13
 * Time: 2:00 PM
 * To change this template use File | Settings | File Templates.
 */
public class ItemCategory {
    private Bitmap icon;
    private String title;
    private int distance;

    public ItemCategory(Bitmap icon, String title, int distance) {
        this.icon = icon;
        this.title = title;
        this.distance = distance;
    }

    public Bitmap getIcon() {
        return icon;
    }

    public String getTitle() {
        return title;
    }

    public int getDistance() {
        return distance;
    }
}




Java Source Code List

com.richso.interamap.AuthorizationScreen.java
com.richso.interamap.BaseActivity.java
com.richso.interamap.CategoryScreen.java
com.richso.interamap.HomeScreen.java
com.richso.interamap.MapScreen.java
com.richso.interamap.MoreInfoScreen.java
com.richso.interamap.RegistrationScreen.java
com.richso.interamap.SplashScreen.java
com.richso.interamap.adapter.CategoryAdapter.java
com.richso.interamap.adapter.ImageAdapter.java
com.richso.interamap.adapter.MarkerInfoAdapter.java
com.richso.interamap.dialogue.WarningDialog.java
com.richso.interamap.item.Category.java
com.richso.interamap.item.ItemCategory.java
com.richso.interamap.utils.Constant.java
com.richso.interamap.utils.Device.java
com.richso.interamap.utils.L.java
com.richso.interamap.view.MapFragment.java