画布中的选框类型文本

时间:2012-08-29 13:35:21

标签: android

我正在使用Canvas.drawText,但没有任何参数。我在画布上绘制文本的宽度有限,所以任何想法如何使其滚动?

感谢。

2 个答案:

答案 0 :(得分:1)

得到解决方案,我计算编辑文本宽度并测量文本。如果文本太宽,则启动runnable cycle,调整在drawText参数中使用的偏移x值。

答案 1 :(得分:-1)

以下是一个例子:

public class TextViewMarquee extends Activity {
    private TextView tv;
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);
        tv = (TextView) this.findViewById(R.id.tv);  
        tv.setSelected(true);  // Set focus to the textview
    }
}

带有textview的xml文件:

<RelativeLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent">
    <TextView
        android:id="@+id/mywidget"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentRight="true"
        android:lines="1"
        android:ellipsize="marquee"
        android:fadingEdge="horizontal"
        android:marqueeRepeatLimit="marquee_forever"
        android:scrollHorizontally="true"
        android:textColor="#ff4500"
        android:text="Simple application that shows how to use marquee, with a long text" />
</RelativeLayout>

注意 - 仅当提供了android:singleLine =“true”时才有效。 提及 Marquee text in Android