RemoteViews.SetIntDimen Method

Definition

Overloads

SetIntDimen(Int32, String, Int32)

Call a method taking one int, a size in pixels, on a view in the layout for this RemoteViews.

SetIntDimen(Int32, String, Single, Int32)

Call a method taking one int, a size in pixels, on a view in the layout for this RemoteViews.

SetIntDimen(Int32, String, Int32)

Call a method taking one int, a size in pixels, on a view in the layout for this RemoteViews.

[Android.Runtime.Register("setIntDimen", "(ILjava/lang/String;I)V", "GetSetIntDimen_ILjava_lang_String_IHandler", ApiSince=31)]
public virtual void SetIntDimen (int viewId, string methodName, int dimenResource);
[<Android.Runtime.Register("setIntDimen", "(ILjava/lang/String;I)V", "GetSetIntDimen_ILjava_lang_String_IHandler", ApiSince=31)>]
abstract member SetIntDimen : int * string * int -> unit
override this.SetIntDimen : int * string * int -> unit

Parameters

viewId
Int32

The id of the view on which to call the method.

methodName
String

The name of the method to call.

dimenResource
Int32

The resource to resolve and pass as argument to the method.

Attributes

Remarks

Java documentation for android.widget.RemoteViews.setIntDimen(int, java.lang.String, int).

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

Applies to

SetIntDimen(Int32, String, Single, Int32)

Call a method taking one int, a size in pixels, on a view in the layout for this RemoteViews.

[Android.Runtime.Register("setIntDimen", "(ILjava/lang/String;FI)V", "GetSetIntDimen_ILjava_lang_String_FIHandler", ApiSince=31)]
public virtual void SetIntDimen (int viewId, string methodName, float value, int unit);
[<Android.Runtime.Register("setIntDimen", "(ILjava/lang/String;FI)V", "GetSetIntDimen_ILjava_lang_String_FIHandler", ApiSince=31)>]
abstract member SetIntDimen : int * string * single * int -> unit
override this.SetIntDimen : int * string * single * int -> unit

Parameters

viewId
Int32

The id of the view on which to call the method.

methodName
String

The name of the method to call.

value
Single

The value of the dimension.

unit
Int32

The unit in which the value is specified.

Attributes

Remarks

Java documentation for android.widget.RemoteViews.setIntDimen(int, java.lang.String, float, int).

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

Applies to