Android Open Source - mirror-notify-android App Item View Holder






From Project

Back to project page mirror-notify-android.

License

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.

Java Source Code

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;
}




Java Source Code List

com.rahulrav.glassnotify.AppItemAdapter.java
com.rahulrav.glassnotify.AppItemViewHolder.java
com.rahulrav.glassnotify.AppItem.java
com.rahulrav.glassnotify.MainActivity.java
com.rahulrav.glassnotify.NotificationListenerService.java
com.rahulrav.glassnotify.NotifierService.java
com.rahulrav.glassnotify.WhitelistActivity.java
com.rahulrav.glassnotify.util.IOUtils.java
com.rahulrav.glassnotify.util.Logger.java