选项卡中的背景图像溢出

时间:2012-12-07 12:17:20

标签: android android-layout tabs android-tabhost

我正在开发一个我正在使用2 TabActivity Control的应用程序。当我将任何标签的背景图像设置为全屏时,它甚至覆盖标签控件。但是,选项卡控件仍保留在图像的背面。这真是奇怪的行为。有人请帮帮我。

以下是我的主标签控件的代码:\

<?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"
    android:padding="5dp">
    <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"
        android:padding="5dp" />
</LinearLayout>

以下是正在添加背景的标签的代码:

TAB1:

public class FirstTab extends Activity {
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);

    setContentView(R.layout.main);

    /* First Tab Content */
    TextView textView  =(TextView) findViewById(R.id.textview);
    textView.setText("First Tab");
}

}

main.xml中

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
      android:layout_width="fill_parent"
      android:layout_height="fill_parent"
      android:orientation="vertical" 
      android:background="@drawable/lux">

<TextView
    android:id="@+id/textview"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:text="@string/hello" />

</LinearLayout>

Lux图像全屏显示...我希望它显示在标签下。任何帮助表示赞赏。

1 个答案:

答案 0 :(得分:0)

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
      android:layout_width="fill_parent"
      android:layout_height="fill_parent"
      android:orientation="vertical" 
      android:background="@drawable/lux">

看到你有layoutSet高度和宽度填充父级,使它成为wrap_content并保持勒克斯图像大小非常小以适应选项卡,或者使dp中的高度和宽度为48dp / 64dp / 72dp / 96dp