gpt4 book ai didi

Android,让文本切换器成为中心?

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

如何集中我的文本切换器?我试过设置重力,但它似乎不起作用。

ts.setFactory(new ViewFactory() {
public View makeView() {
TextView t = new TextView(this);
t.setTypeface(tf);
t.setTextSize(20);
t.setTextColor(Color.WHITE);
t.setText("my text switcher");
t.setGravity(Gravity.CENTER_VERTICAL | Gravity.CENTER_HORIZONTAL);
return t;
}
});

最佳答案

那段代码就OK了,需要设置parent textSwitcher宽度为fill_parent

要么在 XML 中

<TextSwitcher android:layout_width="fill_parent" ...

或在代码中

import android.widget.LinearLayout.LayoutParams;
//...
textSwitcher=...
textSwitcher.setLayoutParams(new LayoutParams(LayoutParams.FILL_PARENT, LayoutParams.WRAP_CONTENT));

关于Android,让文本切换器成为中心?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7662283/

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