gpt4 book ai didi

android - 如何在 tabhost 中将文本居中?

转载 作者:塔克拉玛干 更新时间:2023-11-02 18:58:54 24 4
gpt4 key购买 nike

我有一个基本问题。在许多 tabhost 示例中,我们发现带有图像和文本的选项卡。

在我的例子中,我只想显示文本,但问题是我的文本是水平居中而不是垂直居中(文本位于选项卡底部)。

我试过:在框架布局中使用 android:layout_gravity="center",但它不起作用。

你有什么想法吗?

我的 xml。

<TabHost
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@android:id/tabhost"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_gravity="center">

<LinearLayout
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_gravity="center">

<TabWidget android:id="@android:id/tabs"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_gravity="center"/>

<FrameLayout
android:id="@android:id/tabcontent"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_gravity="center">

</FrameLayout>

</LinearLayout>

</TabHost>

已解决:感谢以下教程,我自定义了我的选项卡:http://joshclemm.com/blog/?p=136

谢谢

最佳答案

  1. 首先尝试获取选项卡标题并明确设置引力和布局,如下所示:

    TextView textView = (TextView)tabHost.getTabWidget().getChildAt(0)
    .findViewById(android.R.id.title);
    textView.setGravity(Gravity.CENTER);
    textView.getLayoutParams().height = ViewGroup.LayoutParams.MATCH_PARENT;
    textView.getLayoutParams().width = ViewGroup.LayoutParams.WRAP_CONTENT;

    希望这对您有所帮助。

关于android - 如何在 tabhost 中将文本居中?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7461400/

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