只有一个在Android上工作的marquees

时间:2013-12-31 18:14:17

标签: android android-layout textview

这是问题Android marquee where each letter has different color的后续问题。

我实际上有四个提到的TextViews,有三种线性布局:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    android:paddingBottom="@dimen/activity_vertical_margin"
    android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin"
    android:background="#000000"
    tools:context=".MainActivity" >

    <!-- ================================ Row 1 ================================ -->

    <LinearLayout style="@style/style1" >


        <TextView
            android:id="@+id/text_1"
      style="@style/style2"
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="0.45"
            android:ellipsize="marquee"
            android:lines="1"
            android:marqueeRepeatLimit="marquee_forever"
            android:text="@string/text_1" />
        <!-- space -->

        <View
            android:layout_width="0dp"
            android:layout_height="match_parent"
            android:layout_weight="0.1" />

        <TextView
            android:id="@+id/text_2"
      style="@style/style2"
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="0.45"
            android:ellipsize="marquee"
            android:lines="1"
            android:marqueeRepeatLimit="marquee_forever"
            android:text="@string/text_2" />
    </LinearLayout>

    <!-- ================================ Row 2 ================================ -->

    <LinearLayout style="@style/style1" >


        <TextView
            android:id="@+id/text_3"
      style="@style/style2"
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="0.45"
            android:ellipsize="marquee"
            android:lines="1"
            android:marqueeRepeatLimit="marquee_forever"
            android:text="@string/text_3" />
        <!-- space -->

        <View
            android:layout_width="0dp"
            android:layout_height="match_parent"
            android:layout_weight="0.1" />

        <TextView
            android:id="@+id/text_4"
      style="@style/style2"
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="0.45"
            android:ellipsize="marquee"
            android:lines="1"
            android:marqueeRepeatLimit="marquee_forever"
            android:text="@string/text_4" />
    </LinearLayout>


</LinearLayout>

在代码中,每个TextView都有setSelected(true),但其中只有一个实际滚动。其他人显示...溢出。

0 个答案:

没有答案