gpt4 book ai didi

java - 在 tabWidget 中跳过一行

转载 作者:行者123 更新时间:2023-12-02 00:11:59 26 4
gpt4 key购买 nike

是否可以在 tabWidget 中跳过一行?到目前为止,我已经尝试过\r 和\n 但什么也没有......这是一个示例代码:

this.tabSpec = tabHost.newTabSpec("deux").setIndicator("Alarme\n volontaire",
getResources().getDrawable(R.drawable.ic_tab_alert)).setContent(alarme);
this.tabHost.addTab(this.tabSpec);

提前致谢!

最佳答案

我在我的应用程序中做了类似的事情并且它有效:

mTabsAdapter.addTab(mTabHost.newTabSpec("deux").setIndicator("Alarme\n volontaire"), null);
for (int i = 0; i < mTabHost.getTabWidget().getChildCount(); i++) {
((TextView) TabHost.getTabWidget().getChildAt(i).findViewById(android.R.id.title)).setSingleLine(false);
}

关于java - 在 tabWidget 中跳过一行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12636916/

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