Tag: android style tabhost

如何更改android中的tabhost的字体大小

如何改变标签的字体大小? 我为选项卡扩展TabActivity。

Android删除tabwidget中的标签之间的空间

我做了一个像HelloTabActivity一样的标签的应用程序,这些标签之间也有空格,任何人都可以build议如何删除这个空间,并且在标签下面还有一个灰色的线,那么如何删除? main.xml中 <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" android:layout_width="fill_parent" android:layout_height="fill_parent"> <TabHost android:id="@android:id/tabhost" android:layout_width="fill_parent" android:layout_height="fill_parent"> <LinearLayout android:orientation="vertical" android:layout_width="fill_parent" android:layout_height="fill_parent" android:padding="5dp" > <HorizontalScrollView android:layout_width="wrap_content" android:layout_height="wrap_content" android:scrollbars="none"> <TabWidget android:id="@android:id/tabs" android:layout_width="fill_parent" android:layout_height="wrap_content" /> </HorizontalScrollView> <FrameLayout android:id="@android:id/tabcontent" android:layout_width="fill_parent" android:layout_height="fill_parent" android:padding="5dp" /> </LinearLayout> </TabHost> </LinearLayout> styles.xml <?xml version="1.0" encoding="utf-8"?> <resources> <style name="CustomTheme" parent="@android:style/Theme"> <item name="android:tabWidgetStyle">@style/CustomTabWidget</item> </style> <style name="CustomTabWidget" parent="@android:style/Widget.TabWidget"> <item name="android:textAppearance">@style/CustomTabWidgetText</item> […]

Android – iphone风格的tabhost

Android Tabhost的样式是否可以像iPhone一样? 如果没有,是否有任何开源代码可以显示如何为Android创build底部标签? 替代文字http://images.appshopper.com/screenshots/305/690205_2.jpg