在Xamarin Android中实现材料设计填充文本字段的方法如下:
<android.support.design.widget.TextInputLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<EditText
android:id="@+id/editText"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="Enter text" />
</android.support.design.widget.TextInputLayout>
TextInputLayout textInputLayout = FindViewById<TextInputLayout>(Resource.Id.textInputLayout);
EditText editText = FindViewById<EditText>(Resource.Id.editText);
textInputLayout.Hint = "Enter text";
if (string.IsNullOrEmpty(editText.Text))
{
textInputLayout.Error = "Text cannot be empty";
}
else
{
textInputLayout.Error = null;
}
这样,你就可以在Xamarin Android中实现材料设计填充文本字段了。
推荐的腾讯云相关产品:腾讯云移动开发平台(https://cloud.tencent.com/product/mwp)提供了丰富的移动开发解决方案,包括移动应用开发、移动应用测试、移动应用运维等服务,可以帮助开发者快速构建和部署移动应用。
领取专属 10元无门槛券
手把手带您无忧上云