0

で埋めようとしてTabHostTabSpecますが、すべて問題ありませんが、挿入されたアイコンsetIndicator(text,drawable)が表示されません。私は自分の写真とアンドロイドの写真を使ってみましたが、どれもうまくいきませんでした。

これが私のコードです:

tabs = (TabHost)findViewById( android.R.id.tabhost );
tabs.setup();

TabHost.TabSpec spec;
spec = tabs.newTabSpec( "destinationTab" )
           .setContent( R.id.destinationTab )
           .setIndicator( getString( R.string.enter_target ), getResources().getDrawable( android.R.drawable.ic_secure ) );
tabsDef.put( "destinationTab", R.id.destinationTab );
tabs.addTab( spec );

spec = tabs.newTabSpec( "freeHuntTab" )
           .setContent( R.id.freeHuntTab )
           .setIndicator( getString( R.string.free_hunting_button ), getResources().getDrawable( R.drawable.ic_my_own ) );
tabsDef.put( "freeHuntTab", R.id.freeHuntTab );
tabs.addTab( spec );

私は何が欠けていますか?

ティア

4

1 に答える 1