如何获取输入电子邮件 ID 的提示大小(在此图片中提到)?
问问题
1199 次
2 回答
2
的文本大小与要输入的hint
文本相同TextInputLayout
。要进入textSize
Java,请执行以下操作:
XML:
<android.support.design.widget.TextInputLayout
android:layout_width="match_parent"
android:layout_height="157dp"
android:layout_alignParentStart="true"
android:layout_alignParentTop="true"
android:layout_marginStart="0dp"
android:layout_marginTop="158dp">
<android.support.design.widget.TextInputEditText
android:layout_width="match_parent"
android:id="@+id/TextInputEditText"
android:layout_height="wrap_content"
android:hint="hint" />
</android.support.design.widget.TextInputLayout>
MainActivity.java:
final TextInputEditText textInputEditText = findViewById(R.id.TextInputEditText);
textInputEditText.setOnFocusChangeListener(new View.OnFocusChangeListener() {
@Override
public void onFocusChange(View v, boolean hasFocus) {
float size = textInputEditText.getTextSize();
Log.i("TEXT_SIZE", String.valueOf(size));
}
});
如果你想改变 textSize 你可以使用textInputEditText.setTextSize();
于 2018-07-13T06:11:07.840 回答
0
例如:要获取提示大小,您需要获取edittext
如下文本大小:
EditText mEmailId= findViewById(R.id.et_email);
mEmailId.getTextSize();
字符串.xml
<string name="edittext_hint"><font size="15">Hint set here</font></string>
然后在你的 XML 中写
<EditText
android:id="@+id/input_msg"
android:inputType="text"
android:hint="@string/edittext_hint" />
或者
减小EditText
- 上的字体大小也会减小提示的大小。IEandroid:textSize="15dp"
于 2018-07-13T06:11:35.070 回答