1

我正在使用 sdk 最低版本 API 11 开发 Android 选项卡,目标是 API 17。我编写了这样的代码。

public class MainScreenActivity extends TabActivity{

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main_screen);  

        TabHost tabHost = getTabHost();

        Intent homeIntent = new Intent(this, HomeScreenView.class);


        tabHost.addTab(tabHost.newTabSpec("Home")
                .setIndicator("Home", getResources().getDrawable(R.drawable.home_states))
                .setContent(homeIntent));


    }
} 

我正在使用这样的标准 Tab xml 文件。

<?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">
    <RelativeLayout
        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" 
            android:layout_alignParentBottom="true" />
        <FrameLayout
            android:id="@android:id/tabcontent"
            android:layout_width="fill_parent"
            android:layout_height="fill_parent"/>
    </RelativeLayout>
</TabHost>

我没有得到选项卡的图标,并且选项卡文本也以大写字母显示。如果我设置 sdkminVersion 8 并删除目标,那么它可以正常工作。请帮帮我。

4

0 回答 0