-1

TabActivity なしでタブを設定したため、tabHost には常にエラーが発生します。やり方を教えてください。ありがとう。

private void setupTab(Class<?> ccls, String name, String label,
        Integer iconId) {
    Intent intent = new Intent().setClass(this, ccls);

    View tab = LayoutInflater.from(this).inflate(R.layout.custom_tab, null);
    ImageView image = (ImageView) tab.findViewById(R.id.icon);
    TextView text = (TextView) tab.findViewById(R.id.text);
    if (iconId != null) {
        image.setImageResource(iconId);
    }
    text.setText(label);

    TabSpec spec = tabHost.newTabSpec(name).setIndicator(tab)
            .setContent(intent);
    tabHost.addTab(spec);

}

Android Tab-Hostを読ん で稼ぐ

4

1 に答える 1

0

ビルドできません。tabHost によるエラーを解決できません。

于 2013-07-12T01:18:27.593 に答える