Multiple choice How can we add the tabs and their listeners to the action bar? Tab t1=bar.newTab(); t1.setText("Tab Text&"); Tab t1=bar.newTab(); t1.setTabListener(this); Tab t1=bar.newTab(); t1.setText("Tab Text"); t1.setTabListener(this); Tab t1=bar.newTab(); t1.setText("Tab Text"); t1.setTabListener(this); bar.addTab(bar.newTab()); Reveal answer Fill a bubble to check yourself D Correct answer Explanation The code to add the tabs and their listeners to the action bar is as follows: t1.setText("Tab Text"); t1.setTabListener(this); bar.addTab(bar.newTab());