在自定义控件标签xamarin表单上设置密码输入 - Android渲染

时间:2017-04-21 09:12:16

标签: xamarin xamarin.android xamarin.forms controls xamarin.droid

我的目标是在.Droid项目的xamarin表单中的自定义控件上设置密码输入。

我的自定义呈现代码:

B

我测试了很多我在网上看过的代码,但没有成功。 如何设置控制标签,如密码标签?用户写作时我会看到点。 感谢。

1 个答案:

答案 0 :(得分:2)

我认为您需要设置InputType属性,例如:

Control.InputType = Android.Text.InputTypes.TextVariationPassword | 
                          Android.Text.InputTypes.ClassText;