设置Tabhost的背景图像

时间:2012-08-15 22:11:32

标签: android android-layout android-tabhost android-tablelayout

我设置了Tabhost的背景图片,但图片不适合它 它从每个TabWidget的一半开始 我已尽力而为但无法摆脱这一点 请帮助!

我的xml的代码是

<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"
      android:background="@drawable/back"
      >

    <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>  

当前应用的快照

http://img32.imageshack.us/img32/6519/captureyha.png

1 个答案:

答案 0 :(得分:1)

你想从哪里开始?

修改:试试这个。

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
      android:id="@android:id/tabhost"
      android:layout_width="fill_parent"
      android:layout_height="fill_parent"
      android:background="@drawable/back"
      >


<TabHost
      android:id="@android:id/tabhost"
      android:layout_width="fill_parent"
      android:layout_height="fill_parent"
      android:background="#000"
      >

    <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>  
</RelativeLayout>