0

私はAndroidタブアプリケーションに取り組んでいます.タブバーのコンテンツを実用的に変更したい.私のタブバーには画像とImageViewテキストをTextView変更する必要があります.ImageviewTextView

View tab = tabHost.getTabWidget().getChildTabViewAt(1);
TextView tv = (TextView) tab.findViewById(android.R.id.orders_label);

このコードも機能しませんでした..!

4

2 に答える 2

0
    ImageView tabImage = (ImageView )tabHost.getTabWidget().getChildAt(1).findViewById(R.id.ordericon);
    TextView tabText = (TextView )tabHost.getTabWidget().getChildAt(1).findViewById(R.id.orders_label);
于 2013-04-29T04:07:03.230 に答える