Back to project page mirror-notify-android.
The source code is released under:
Apache License
If you think the Android project mirror-notify-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.
package com.rahulrav.glassnotify; /*from w ww . j av a 2 s . com*/ import android.widget.CheckBox; import android.widget.ImageView; import android.widget.TextView; /** * Simple View Holder for a @link{AppItem} */ public class AppItemViewHolder { /** * The textview that has the packageName. */ public TextView packageName; /** * The checkbox that has the whitelist status. */ public CheckBox isWhiteListed; /** * The imageView that shows the application icon. */ public ImageView imageView; }