gpt4 book ai didi

android - 按钮上的 SpannableString 不适用于 API21?

转载 作者:太空宇宙 更新时间:2023-11-03 11:34:44 25 4
gpt4 key购买 nike

我尝试使用 SpannableString 在切换按钮上放置一个图标。并在 API17 上工作,但不在 API21 上工作。

spanable string on button and text

如您所见,它适用于 API17 的 Button 和 TextView,但仅适用于 API21 的 TextView(“Z”未被图标替换)。

private SpannableStringBuilder createSpanIcon(int rid, String name){
Drawable d = getActivity().getResources().getDrawable(rid);
d.setBounds(0,0,20,20);
ImageSpan imageSpan = new ImageSpan(d, DynamicDrawableSpan.ALIGN_BASELINE);
SpannableStringBuilder builder = new SpannableStringBuilder();

builder.append("Z\n")
.append(name)
.setSpan(imageSpan, 0, 1, Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);

/* This give same result
builder.append("Z", imageSpan, Spanned.SPAN_EXCLUSIVE_EXCLUSIVE)
.append("RED", new ForegroundColorSpan(Color.RED), Spanned.SPAN_EXCLUSIVE_EXCLUSIVE)
.append("\n" + name);
*/

return builder;
}

    Button btn = (Button)v.findViewById(R.id.myButton);
SpannableStringBuilder _test = createSpanIcon(R.drawable.tc_g, "Click Me!" );
btn.setText( _test );

TextView txt = (TextView)v.findViewById(R.id.myText);
SpannableStringBuilder _test2 = createSpanIcon(R.drawable.tc_g, "I'm text" );
txt.setText( _test2 );

注意:我不想使用 setCompoundDrawablesWithIntrinsicBounds,因为我要把图标放在 ToggleButton 上,所以 setTextOn setTextOff 将为我交换图标。

有人知道为什么吗?有什么解决办法吗?

最佳答案

您可以通过禁用 allCaps 模式来解决此问题,对于 Material 样式的按钮,默认情况下该模式为 true

来自代码,

txt.setAllCaps(false);

来自 XML,

<Button
...
android:textAllCaps="false" />

关于android - 按钮上的 SpannableString 不适用于 API21?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28778456/

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