如何在tabhost中居文本?

时间:2011-09-18 12:12:56

标签: android center android-tabhost vertical-alignment

我有一个基本问题。在许多tabhost示例中,我们找到包含图像和文本的选项卡。

在我的情况下,我只想显示文字,但问题是我的文字是水平居中但不是垂直的(文字位于我标签的底部)。

我试过:framelayout中的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

谢谢

3 个答案:

答案 0 :(得分:3)

  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;
    

    希望这有帮助。

答案 1 :(得分:0)

android:layout_width="fill_parent"   
android:layout_height="fill_parent"
android:gravity="center_vertical|center_horizontal"
android:layout_gravity="center_vertical|center_horizontal"

答案 2 :(得分:0)

使用以下代码编写标签文本:

RelativeLayout.LayoutParams param = new

RelativeLayout.LayoutParams(LayoutParams.WRAP_CONTENT,LayoutParams.WRAP_CONTENT);

    param.addRule(RelativeLayout.CENTER_IN_PARENT);

TextView tv = (TextView) tabHost.getTabWidget().getChildAt(0)
            .findViewById(android.R.id.title); // Unselected Tabs
    tv.setTextColor(Color.parseColor("#505050"));
    tv.setTextSize(10);
    tv.setLayoutParams(param);