I have a Textview in customized google info window.
Added marquee to textview
<TextView
android:id="@+id/scroll"
android:text="Single-line text view that scrolls automatically if the text is too long to fit in the widget"
android:singleLine="true"
android:ellipsize="marquee"
android:marqueeRepeatLimit ="marquee_forever"
android:focusable="true"
android:focusableInTouchMode="true"
android:scrollHorizontally="true"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
also added setSelected to scroll.
View v = LayoutInflater.from( getActivity() ).inflate( R.layout.view_info_window, null );
TextView scroll = (TextView) v.findViewById( R.id.scroll );
scroll.setSelected(true);
But the text is not scrolling in info window. Please Help