<TextView
    android:id="@+id/mytv"
    android:layout_width="150px"
    android:layout_height="wrap_content"
    android:layout_centerInParent="true"
    android:text="@string/hello"
    android:singleLine="true"            //單行文本顯示,
    android:ellipsize="marquee"      //跑馬燈效果
    android:marqueeRepeatLimit="marquee_forever"     //重複次數的設定,默認是無窮次
/><requestFocus />

要獲得焦點才可以動態顯示

獲得焦點的方法在 xml中加上<requestFocus />

或是在程式中

tv=(TextView)findViewById(R.id.mytv);
tv.setFocusable(true);

arrow
arrow
    全站熱搜

    狼翔月影 發表在 痞客邦 留言(0) 人氣()