How to scroll through all text images in android widgets?

I made a widget with two textviews , the scroll only scrolled one TextView

... How can I

scroll all text> ?

I use this solution from another question, but it only works with one TextView

..

LINK: Is it possible to select TextView Marquee in widgets extending 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 to scroll through all text messages ? thank

+3


source to share





All Articles