0

I have a question that I am implementing a tab in my android app but Tab host not displays title.

I use the following code in XML

    <TabWidget
        android:id="@android:id/tabs"
        android:layout_width="fill_parent"
        android:layout_height="63dip"/>

    <FrameLayout
        android:id="@android:id/tabcontent"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"/>
</LinearLayout>

Please tell how to display title and set the size to tab host in android

4

1 回答 1

0

我建议你看这里。

基本上,您创建一个自定义布局(这都来自该链接顺便说一句):

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
    android:shape="rectangle">
    <gradient android:startColor="#A8A8A8" android:centerColor="#7F7F7F"
        android:endColor="#696969" android:angle="-90" />
</shape>

然后你给它充气。由于我不想直接抄袭,只需检查链接。

于 2013-08-06T09:31:31.400 回答