如何在tabhost中居中文本?
Posted
技术标签:
【中文标题】如何在tabhost中居中文本?【英文标题】:How to center text in tabhost? 【发布时间】:2011-11-19 15:45:48 【问题描述】:我有一个基本问题。在许多 tabhost 示例中,我们可以找到带有图像和文本的选项卡。
在我的情况下,我只想显示一个文本,但问题是我的文本水平居中而不是垂直居中(文本位于标签的底部)。
我在框架布局中尝试了:android:layout_gravity="center",但它不起作用。
请问你有什么想法吗?
我的 xml。
<TabHost
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@android:id/tabhost"
android:layout_
android:layout_
android:layout_gravity="center">
<LinearLayout
android:orientation="vertical"
android:layout_
android:layout_
android:layout_gravity="center">
<TabWidget android:id="@android:id/tabs"
android:layout_
android:layout_
android:layout_gravity="center"/>
<FrameLayout
android:id="@android:id/tabcontent"
android:layout_
android:layout_
android:layout_gravity="center">
</FrameLayout>
</LinearLayout>
</TabHost>
已解决:感谢以下教程,我自定义了标签:http://joshclemm.com/blog/?p=136
谢谢
【问题讨论】:
很久以前有人问过同样的问题。请阅读本期enter link description here 是的,我看到了这篇文章,但我仍然有这个问题。 :( 最好使用自定义选项卡,因为默认选项卡具有图标和文本的大小。 How to center align text in a tab bar in Android 的可能副本 谢谢。你说得对。由于以下教程,我自定义了我的标签: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;
希望对您有所帮助。
【讨论】:
【参考方案2】:使用下面的代码使标签文本居中:
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);
【讨论】:
【参考方案3】:android:layout_
android:layout_
android:gravity="center_vertical|center_horizontal"
android:layout_gravity="center_vertical|center_horizontal"
【讨论】:
我尝试了您的解决方案,但它不起作用。我的文字仍然在标签的底部。对你有用吗?以上是关于如何在tabhost中居中文本?的主要内容,如果未能解决你的问题,请参考以下文章