gpt4 book ai didi

android - 应用不同颜色的样式

转载 作者:行者123 更新时间:2023-11-30 03:59:21 25 4
gpt4 key购买 nike

enter image description here

如何应用样式和颜色,前半部分是一种颜色,另一半世界是其他颜色,如上图

最佳答案

试试这个,

<TextView 
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/tvText"
android:background="#FF0000"
android:textSize="28dip"
android:textStyle="bold"
android:paddingLeft="10dip"
android:paddingRight="10dip"
/>


TextView tvText = (TextView)findViewById(R.id.tvText);
Spannable WordtoSpan = new SpannableString("AIRTEL");

WordtoSpan.setSpan(new BackgroundColorSpan(Color.WHITE), 0, 3, Spannable.SPAN_EXCLUSIVE_EXCLUSIVE);

tvText.setText(WordtoSpan);

这可能对你有帮助。

关于android - 应用不同颜色的样式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12776303/

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