2014-01-09 59 views

回答

3
View v = tabHost.getTabWidget().getChildAt(i); 

if(v instanceof RelativeLayout) { 
    // RelativeLayout 
} else if (v instanceof LinearLayout){ 
    // LinearLayout 
} 

雖然你可能應該使用findViewById()找到Widget你想要的。

View v = tabHost.getTabWidget().findViewById(R.id.myLinearLayoutView); 
+0

感謝這項工作:D – bukanamay

相關問題