List of usage examples for android.widget RemoteViews getPackage
public String getPackage()
From source file:com.achep.acdisplay.notifications.OpenNotificationJellyBean.java
@Override public void load(@NonNull Context context) { RemoteViews rvs = getNotification().contentView; if (rvs == null) rvs = getNotification().bigContentView; if (rvs == null) //noinspection deprecation rvs = getNotification().tickerView; mPackageName = rvs != null ? rvs.getPackage() : "!2#$%^&*()"; super.load(context); }