gpt4 book ai didi

android - 禁用时更改 EditText 下划线

转载 作者:行者123 更新时间:2023-11-30 00:01:18 24 4
gpt4 key购买 nike

假设我有一个出生日期的编辑文本输入:

dob_enabled

我想动态改变它的状态然后被禁用,并让它有一个虚线下划线来表明它被禁用:

dob_disabled

我该怎么做?它将根据 google material design guidelines :

material_guidelines

最佳答案

在drawable文件夹中创建一个drawable underline.xml

<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item
android:bottom="1dp"
android:left="-2dp"
android:right="-2dp"
android:top="-2dp">
<shape android:shape="rectangle">
<stroke
android:width="1dp"
android:color="@android:color/black"
android:dashGap="3.0dp"
android:dashWidth="1dp" />
</shape>
</item>

然后以编程方式应用此可绘制对象并将其设置为禁用

editText=(EditText)findViewById(R.id.your_edittext);
editText.setEnabled(false);
editText.setBackgroundResource(R.drawable.underline);

输出:

enter image description here

关于android - 禁用时更改 EditText 下划线,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49871085/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com