gpt4 book ai didi

Android:淡化编辑文本字段的技术

转载 作者:塔克拉玛干 更新时间:2023-11-03 01:05:58 25 4
gpt4 key购买 nike

我想知道以编程方式淡出编辑文本字段的最佳方法是什么?

例如,我希望编辑文本字段看起来像这样:

enter image description here

目前我只使用我使用 gimp 淡出的静态图像,但我会将它们全部更改为淡出的编辑文本字段。

非常感谢任何输入!

最佳答案

您可以使用渐变实现类似的结果。

先在drawable forlder xml文件中创建shape元素,例如:

<!-- mygradient.xml -->
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" >

<solid android:color="@color/black" />

<gradient
android:angle="90"
android:centerColor="@color/grey"
android:endColor="@color/white"
android:startColor="@color/black"
android:type="linear" />

</shape>

接下来使用您的 xml 作为某些 View 的背景:

<TextView
android:background="@drawable/mygradient"
android:layout_height="wrap_content"
android:layout_width="wrap_content" />

有关可绘制形状和渐变的更多信息,请查看 here

关于Android:淡化编辑文本字段的技术,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11763015/

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