android scrollHorizo​​ntally

时间:2012-04-06 19:10:38

标签: android scroll textview

你可以帮我修一个小虫子吗? 我有一个textview,我想在一行水平滚动它。 我已经使用过这段代码,但它不起作用。有人可以帮帮我吗?

<TextView
    android:id="@+id/SpeseHeader_2"
    android:layout_width="wrap_content"
    android:layout_height="fill_parent"
    android:layout_weight="1"
    android:textColor="#000000"
    android:scrollHorizontally="true"
    android:ellipsize="marquee"
    android:singleLine="true" 
    android:textAppearance="?android:attr/textAppearanceLarge" />

1 个答案:

答案 0 :(得分:1)

试试这个:

 <TextView  
    android:id="@+id/SpeseHeader_2"
    android:layout_width="fill_parent"  
    android:layout_height="40sp"  
    android:background="#000"  
    android:gravity="center"  
    android:text="horizontial scrollbar test: text1 text2 text3 ... text7 text8"  
    android:singleLine="true"
    android:marqueeRepeatLimit ="marquee_forever"
    android:ems="16"
    android:focusable="true"
    android:focusableInTouchMode="true"
    android:textColor="#FF0000"
    android:ellipsize="marquee"
    android:scrollHorizontally="true"  
    android:scrollbars="horizontal"  
    />