I am new to Android and in my project I have requirement

i.e I have six tabs but I show only three tabs on screen and for rest of tabs I use ScrollView.Here selected tab item must be in the middle,first when I enter into screen I show middle item is active(i.e selected).

That's fine but how could I set this middle item as middle when I scroll for remaining Tabs?

can anybody give suggestion for getting solution.

link|improve this question

0% accept rate
have you looked into using a listener that will detect scrolling and than you manually set the selectedTab in the callback method? – hovanessyan Dec 15 '11 at 8:53
Thanks for your suggestion but i didn't work the following scrolling listeners (i declared Horizaontalscrollview in xml) TestHorizontalScrollView sView = (TestHorizontalScrollView)findViewById(R.id.horizontalScrollView);public class TestHorizontalScrollView extends HorizontalScrollView { public TestHorizontalScrollView(Context context) { super(context); } @Override protected void onScrollChanged(int l, int t, int oldl, int oldt) { super.onScrollChanged(l, t, oldl, oldt); } } – Gopi Dec 15 '11 at 9:01
stackoverflow.com/q/8181828/1007273 take a look here, I think you will find helpful ideas. – hovanessyan Dec 15 '11 at 9:04
feedback

1 Answer

I don't think the tabhost have such behavior. As I know, tabhost can work without tab controller. For your case, a gallery will replace the tab controller, as you know, the selected item in gallery always stay in the middle. Then in gallery's event listener, write some code to control which tab will show in tabhost.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.