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


    }
} 

このような標準のタブ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