gpt4 book ai didi

android:如何在两行中设置tabhost的标签?

转载 作者:行者123 更新时间:2023-11-29 14:09:30 25 4
gpt4 key购买 nike

现在我想像这样设置选项卡小部件: alt text

我该怎么办?我所知道的可能性是修改Android源代码,有更好的主意吗?非常感谢!

最佳答案

我使用 fragment 来执行技巧:请参阅 Android's Doc .因此,您应该在任何布局中添加例如 4 个按钮,并通过单击其中一个显示 4 个不同的 Fragment,下面是显示一个 Fragment 的示例:

    FragmentTransaction ft = getFragmentManager().beginTransaction();
Fragment prev = getFragmentManager().findFragmentByTag(TAG_APP_DIALOG);
if (prev != null) {
ft.remove(prev);
}
// Create and show the dialog fragment.
DialogFragment newFragment = AppDialogFragment.newInstance(folderName, this, appInfos);
newFragment.setRetainInstance(false);
ft.add(mRootLayout.getId(), newFragment, TAG_APP_DIALOG);
ft.commit();

关于android:如何在两行中设置tabhost的标签?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4406679/

25 4 0