0

我正在开发一个使用 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>

这是正在添加背景的选项卡的代码:

表 1:

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");
}

}

主要的.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>

勒克斯图像全屏显示...我希望它显示在选项卡下。任何帮助表示赞赏。

4

1 回答 1

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 并保持 lux 图像尺寸非常小以适合选项卡,或者使 dp 中的高度和宽度为 48dp/64dp/72dp/96dp

于 2012-12-07T12:21:19.767 回答