public setPadding ( int arg0, int arg1, int arg2, int arg3 ) : void | ||
arg0 | int | |
arg1 | int | |
arg2 | int | |
arg3 | int | |
return | void |
TextView textView = FindViewById(Resource.Id.textview); textView.SetPadding(20, 20, 20, 20);
TextView textView = FindViewById(Resource.Id.textview); textView.SetPadding(30, textView.PaddingTop, textView.PaddingRight, textView.PaddingBottom);
TextView textView = FindViewByIdThese examples use the Android.Widget package library.(Resource.Id.textview); textView.SetPadding(textView.PaddingLeft, 10, textView.PaddingRight, 10);
public setPadding ( int arg0, int arg1, int arg2, int arg3 ) : void | ||
arg0 | int | |
arg1 | int | |
arg2 | int | |
arg3 | int | |
return | void |