Lines Matching defs:RemoteViews

57 public class RemoteViews implements Parcelable, Filter {
59 private static final String LOG_TAG = "RemoteViews";
85 * A class to keep track of memory usage by this RemoteViews
91 * This flag indicates whether this RemoteViews object is being created from a
101 * with the {@link RemoteViews} mechanism.
222 Log.e("RemoteViews", "The method setOnClickFillInIntent is available " +
241 Log.e("RemoteViews", "Collection item doesn't have AdapterView parent");
247 Log.e("RemoteViews", "Attempting setOnClickFillInIntent without" +
351 Log.e("RemoteViews", "Cannot setPendingIntentTemplate on a view which is not" +
387 Log.e("RemoteViews", "SetRemoteViewsAdapterIntent action can only be used for " +
393 Log.e("RemoteViews", "Cannot setRemoteViewsAdapter on a view which is not " +
447 Log.e("RemoteViews", "Cannot setOnClickPendingIntent for collection item " +
611 + " can't use method with RemoteViews: "
618 Log.d("RemoteViews", "view: " + klass.getName() + " calling method: "
667 Log.d("RemoteViews", "read viewId=0x" + Integer.toHexString(this.viewId)
725 Log.d("RemoteViews", "write viewId=0x" + Integer.toHexString(this.viewId)
833 + " can't use method with RemoteViews: "
840 Log.d("RemoteViews", "view: " + klass.getName() + " calling method: "
886 * given {@link RemoteViews}, or calling {@link ViewGroup#removeAllViews()}
887 * when null. This allows users to build "nested" {@link RemoteViews}.
890 public ViewGroupAction(int viewId, RemoteViews nestedViews) {
928 RemoteViews nestedViews;
934 * Simple class used to keep track of memory usage in a RemoteViews.
954 * Create a new RemoteViews object that will display the views contained
960 public RemoteViews(String packageName, int layoutId) {
970 * Reads a RemoteViews object from a parcel.
974 public RemoteViews(Parcel parcel) {
1024 public RemoteViews clone() {
1025 final RemoteViews that = new RemoteViews(mPackage, mLayoutId);
1030 // update the memory usage stats of the cloned RemoteViews
1044 * This flag indicates whether this RemoteViews object is being created from a
1070 * Returns an estimate of the bitmap heap memory usage for this RemoteViews.
1093 * given {@link RemoteViews}. This allows users to build "nested"
1094 * {@link RemoteViews}. In cases where consumers of {@link RemoteViews} may
1099 * @param nestedView {@link RemoteViews} that describes the child.
1101 public void addView(int viewId, RemoteViews nestedView) {
1252 * RemoteViews#setPendingIntentTemplate(int, PendingIntent) in conjunction with
1253 * RemoteViews#setOnClickFillInIntent(int, Intent).
1267 * {@link RemoteViews#setOnClickFillInIntent(int, Intent)}.
1282 * RemoteViews#setPendingIntentTemplate(int, PendingIntent)}, and the individual on-click
1353 * {@link android.widget.RemoteViews#setRemoteAdapter(int, Intent)}
1393 * Call a method taking one boolean on a view in the layout for this RemoteViews.
1404 * Call a method taking one byte on a view in the layout for this RemoteViews.
1415 * Call a method taking one short on a view in the layout for this RemoteViews.
1426 * Call a method taking one int on a view in the layout for this RemoteViews.
1437 * Call a method taking one long on a view in the layout for this RemoteViews.
1448 * Call a method taking one float on a view in the layout for this RemoteViews.
1459 * Call a method taking one double on a view in the layout for this RemoteViews.
1470 * Call a method taking one char on a view in the layout for this RemoteViews.
1481 * Call a method taking one String on a view in the layout for this RemoteViews.
1492 * Call a method taking one CharSequence on a view in the layout for this RemoteViews.
1503 * Call a method taking one Uri on a view in the layout for this RemoteViews.
1514 * Call a method taking one Bitmap on a view in the layout for this RemoteViews.
1528 * Call a method taking one Bundle on a view in the layout for this RemoteViews.
1659 * Parcelable.Creator that instantiates RemoteViews objects
1661 public static final Parcelable.Creator<RemoteViews> CREATOR = new Parcelable.Creator<RemoteViews>() {
1662 public RemoteViews createFromParcel(Parcel parcel) {
1663 return new RemoteViews(parcel);
1666 public RemoteViews[] newArray(int size) {
1667 return new RemoteViews[size];