直接在布局里写代码就好了
<TextView
android:id="@+id/menu_desc"
android:layout_width="300dip"
android:layout_height="wrap_content"
android:text="温馨提示:左右可以滑动 。点击可以进入啊"
android:textSize="22dip"
android:singleLine="true"
android:ellipsize="marquee"
android:focusable="true"
android:focusableInTouchMode="true"
android:scrollHorizontally="true"
android:marqueeRepeatLimit="marquee_forever"
android:layout_centerHorizontal="true"
android:layout_centerVertical="true"
/>
主要是这几句:
android:singleLine="true"
android:ellipsize="marquee"
android:focusable="true"
android:focusableInTouchMode="true"
android:scrollHorizontally="true"
android:marqueeRepeatLimit="marquee_forever"