public ItemViewProperties(int id, int titleResId, int messageResId, ItemViewType itemType, float scale, ShowcaseView.ConfigOptions configOptions) { this.Id = id; this.TitleResId = titleResId; this.MessageResId = messageResId; this.ItemType = itemType; this.Scale = scale; this.ConfigurationOptions = configOptions; }
public ItemViewProperties(int id, int titleResId, int messageResId, ItemViewType itemType, ShowcaseView.ConfigOptions configOptions) : this(id, titleResId, messageResId, itemType, DefaultScale, configOptions) { }
public ItemViewProperties(int id, int titleResId, int messageResId, ItemViewType itemType, float scale) : this(id, titleResId, messageResId, itemType, scale, null) { }
public ItemViewProperties(int id, int titleResId, int messageResId, ItemViewType itemType) : this(id, titleResId, messageResId, itemType, DefaultScale, null) { }