是否可以在Android中将图像添加为背景来编辑保持下划线的文本?

时间:2018-08-10 07:33:42

标签: android android-layout android-edittext

我想将点设置为背景,以将文本作为inputType密码进行编辑,但同时也作为提示并保持下划线。

enter image description here

有可能这样做吗?

3 个答案:

答案 0 :(得分:1)

您可以在布局中使用多个EditText,然后根据用户输入来回跳转。用提示图像初始化它们。然后,只要用户输入按键,就加载黑点图像。

您可以使用覆盖onKeyPressed()方法进行调整。

onKeyPressed->如果按下的键是字母/数字,则将图像设置为背景, 如果按下的键是Delete键,则将提示图像设置为背景并清除该编辑文本。

希望这会有所帮助。

答案 1 :(得分:1)

$i = 0; while($i < 5): if($counselor[$i++]->state == $state || !$state): // do stuff endif; endwhile; 成像您的background并为edittext使用View

UnderLine

尝试一下对您有帮助。

答案 2 :(得分:0)

是的,您可以在“编辑文本”中设置“地面图像”。

XML代码:

 <EditText
        android:layout_width="match_parent"
        android:layout_height="wrap_content" 
        android:text="Any thing you want"
        android:background="@mipmap/ic_launcher_round"/>