I need to add TextViews in Horizontal ScrollView and on scroll I have to check which textview is in the middle of the center if three textView are showing on the screen? Note: I have added horizontal scrollView and TextViews.Here is my code.
<HorizontalScrollView
android:layout_width="fill_parent"
android:layout_height="40dp"
android:scrollbars="none" >
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@drawable/catagorybar"
android:orientation="horizontal" >
<TextView
android:id="@+id/textView1"
android:layout_width="match_parent"
android:layout_height="fill_parent"
/>
<TextView
android:id="@+id/textView2"
android:layout_width="match_parent"
android:layout_height="fill_parent"
/>
<TextView
android:id="@+id/textView3"
android:layout_width="match_parent"
android:layout_height="fill_parent"
/>
<TextView
android:id="@+id/textView4"
android:layout_width="match_parent"
android:layout_height="fill_parent"
/>
<TextView
android:id="@+id/textView5"
android:layout_width="match_parent"
android:layout_height="fill_parent"
/>
<TextView
android:id="@+id/textView6"
android:layout_width="match_parent"
android:layout_height="fill_parent"
/>
</LinearLayout>
</HorizontalScrollView>