假设我想更改文本大小。我在代码中这样做,它看起来像这样:
_textInputLayout.EditText.SetTextSize(Android.Util.ComplexUnitType.Dip, 40);
当我在条目中写文本时,它看起来像 40dip 文本。但是当条目为空时,提示文本看起来像 16-18dip。
有没有办法改变提示文字的大小?
假设我想更改文本大小。我在代码中这样做,它看起来像这样:
_textInputLayout.EditText.SetTextSize(Android.Util.ComplexUnitType.Dip, 40);
当我在条目中写文本时,它看起来像 40dip 文本。但是当条目为空时,提示文本看起来像 16-18dip。
有没有办法改变提示文字的大小?
可以通过样式更改最终提示大小/浮动标签大小,并SetHintTextAppearance
使用以下内容进行调用:-
_nativeView.SetHintTextAppearance(App6.Droid.Resource.Style.MyTextInputLayout);
类似的东西在哪里MyTextInputLayout
:-
<style name="MyTextInputLayout" parent="@android:style/TextAppearance">
<item name="android:textColor">@color/blue</item>
<item name="android:textSize">44sp</item>
</style>
但是textSize
,当您开始输入一些文本时,这种样式仅适用于最终目的地。
据我所见,包括对象的属性,目前似乎无法更改提示的起始字体大小?
暴露在哪里EditText
,你可以在那里改变东西。该Hint
部分根本不由它处理,而是由TextInputLayout
. 似乎没有任何对象可以访问以专门为Hint
.
您可以通过在字符串资源中设置大小来做到这一点。
例如:
<string name="edittext_hint"><font size="15">Hint here!</font></string>
然后在你的 XML 中写
android:hint="@string/edittext_hint"
这将为提示生成较小的文本,但输入文本的原始大小。
或者像这样:
MYEditText.addTextChangedListener(new TextWatcher(){
@Override
public void afterTextChanged(Editable arg0) {
// TODO Auto-generated method stub
}
@Override
public void beforeTextChanged(CharSequence arg0, int arg1,
int arg2, int arg3) {
// TODO Auto-generated method stub
}
@Override
public void onTextChanged(CharSequence arg0, int start, int before,
int count) {
if (arg0.length() == 0) {
// No entered text so will show hint
editText.setTextSize(TypedValue.COMPLEX_UNIT_SP, mHintTextSize);
} else {
editText.setTextSize(TypedValue.COMPLEX_UNIT_SP, mRealTextSize);
}
}
});