作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用 maskedEditText图书馆。一切正常,但如果我设置 hint
它就不起作用了。示例:我有这个 xml:
<br.com.sapereaude.maskedEditText.MaskedEditText
android:id="@+id/phoneSend"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:hint="(111) 111 11 11"
android:inputType="number"
android:textColor="#fff"
android:layout_marginLeft="3dp"
android:background="@null"
mask:mask="(###) ###-##-##"
>
</br.com.sapereaude.maskedEditText.MaskedEditText>
如果我要输入文字:12345
它显示:23451
如果我删除 android:hint="(111) 111 11 11"
一切正常。但是我需要使用提示
最佳答案
包装您的 MaskedEditText 模板 TextInputLayout 并在其中键入提示:
<android.support.design.widget.TextInputLayout
android:id="@+id/tilPhoneNumber"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="Input phone (111) 111-11-11">
<br.com.sapereaude.maskedEditText.MaskedEditText
android:id="@+id/metPhone"
style="@style/..."
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:freezesText="true"
android:inputType="number"
android:typeface="monospace"
app:allowed_chars="1234567890"
app:keep_hint="true"
app:mask="(###) ###-##-##"/>
</android.support.design.widget.TextInputLayout>
关于android - MaskedEditText 提示(android),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30547707/
抱歉我的英语不好。 我正在使用图书馆 MaskedEditText 。一切正常,但我可以获取文本(仅限文本)。 示例:我有 XML: 如果用户输入文本:(111) 111-11-11, 我应该只得
我正在使用 maskedEditText图书馆。一切正常,但如果我设置 hint 它就不起作用了。示例:我有这个 xml: 如果我要输入文字:12345
我正在尝试使用 MaskedEditText 作为电话号码。这是 xml 代码: '' 我添加到成绩中的内容: implementation 'ru.egslava:MaskedEditText:1
我在使用 maskedEditText 时遇到以下错误图书馆: 我下载了库,然后我点击File->New->Other->Android project from existing Code-> Ad
我是一名优秀的程序员,十分优秀!