2

アンドロイドの連絡先のタブのように、私はスタイルを追加したい(または多分それは背景か私が知らない何かです)どうやってお願いしますか?

<?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="fill_parent"
    android:layout_height="fill_parent">
    <LinearLayout
        android:orientation="vertical"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent">
        <TabWidget
            android:id="@android:id/tabs"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content" />
        <FrameLayout
            android:id="@android:id/tabcontent"
            android:layout_width="fill_parent"
            android:layout_height="fill_parent"/>
    </LinearLayout>
</TabHost>

私はデザインが苦手なので、良い背景やタブを見つける場所を教えてください:)

4

1 に答える 1

5

ここでは、タブに関するすべてがほぼ揃っています。Android 1.6以降で動作します:http://joshclemm.com/blog/?p = 136

TabSpecでsetIndicatorを呼び出して、テキストだけでなくビューを渡す必要があります。次に、セレクターなどを使用してそのビューをカスタマイズできます。

于 2013-01-26T15:21:32.837 に答える