I made widget with two textviews, only one TextView was scrolling... How can I 
scroll all textviews?
I use this solution from another question but it only work on one TextView..
LINK :Is it possible for TextView Marquee in a Widget that extends AppWidgetProvider?
 <TextView android:id="@+id/fact" android:layout_width="200dp"
            android:text="Loading... More text to see if it spans or not and want more"
            android:singleLine="true" 
            android:ellipsize="marquee"
            android:marqueeRepeatLimit ="marquee_forever"
            android:scrollHorizontally="true"
            android:focusable="true"
            android:focusableInTouchMode="true"
            android:duplicateParentState="true">
        <requestFocus android:focusable="true" android:focusableInTouchMode="true"
            android:duplicateParentState="true" />
    </TextView>
How can I scroll all textviews? thanks