【发布时间】:2016-09-01 04:33:04
【问题描述】:
大家好,我正在开发一个 android 项目。我想更改选项卡小部件的条带颜色并更改选项卡文本的大小。请告诉我解决方案我该怎么做?
这是代码:
<?xml version="1.0" encoding="utf-8"?>
<TabHost xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@android:id/tabhost"
android:layout_width="match_parent"
android:layout_height="fill_parent"
android:background="@android:color/holo_blue_dark">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="fill_parent"
android:orientation="vertical">
<TabWidget
android:id="@android:id/tabs"
android:layout_width="wrap_content"
android:layout_height="50dp"
android:layout_marginLeft="30dp"
android:layout_marginTop="30dp"
android:elevation="0dp"
android:showDividers="none"
android:tabStripEnabled="false" />
<FrameLayout
android:id="@android:id/tabcontent"
android:layout_width="match_parent"
android:layout_height="fill_parent" />
</LinearLayout>
</TabHost>
【问题讨论】:
-
你可以检查这个http://stackoverflow.com/a/15750561/4049612来改变标签底部的颜色
标签: android performance android-layout android-fragments android-studio