Android Open Source - ListAppsModuleProject App Info






From Project

Back to project page ListAppsModuleProject.

License

The source code is released under:

MIT License

If you think the Android project ListAppsModuleProject 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.ahmetkizilay.modules.listapps;
//from w  w  w .j  av a 2s .  c o  m
/**
 * Created by ahmetkizilay on 09.07.2014.
 */
public class AppInfo {
    private String mPackageName;
    private String mAppName;
    private String mLabel;
    private int mAppIcon;

    public AppInfo(String packageName, String appName, String label, int appIcon) {
        this.mPackageName = packageName;
        this.mAppIcon = appIcon;
        this.mAppName = appName;
        this.mLabel = label;
    }

    public String getAppName() {
        return this.mAppName;
    }

    public int getAppIcon() {
        return this.mAppIcon;
    }

    public String getPackageName() {
        return this.mPackageName;
    }

    public String getLabel() {
        return this.mLabel;
    }
}




Java Source Code List

com.ahmetkizilay.modules.listapps.AppInfo.java
com.ahmetkizilay.modules.listapps.AppListerAdapter.java
com.ahmetkizilay.modules.listapps.AppListerViewGroup.java