-4

如何以一定的间隔和步长水平或垂直选取文本?文本从数组中显示。

4

3 回答 3

1

这将帮助您水平选框

<TextView
    android:id="@+id/scroller" 
    android:layout_width="fill_parent" 
    android:layout_height="wrap_content" 
    android:lines="1" 
    android:ellipsize="marquee" 
    android:marqueeRepeatLimit="marquee_forever" 
    android:scrollHorizontally="true"
    android:focusable="true" 
    android:focusableInTouchMode="true" 
    android:text="text that is longer than the view"></TextView>
于 2013-04-01T06:24:24.523 回答
0

我不确定我是否正确理解了您的问题。您可以使用 x 和 y 位置在 cusotm 视图上绘制文本。更改 x 和 y 位置并调用 invalidate 以刷新绘图。下面的示例将文本 hello... 从右向左移动。

public class MainActivity extends Activity {
float x,y;
TextView tv;
@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    DrawingView dv= new DrawingView(this);
    setContentView(dv); 
}

@Override
public boolean onCreateOptionsMenu(Menu menu) {
    // Inflate the menu; this adds items to the action bar if it is present.
    getMenuInflater().inflate(R.menu.activity_main, menu);
    return true;
}
class DrawingView extends View
{
    Context mcontext;
    Paint mPaint;
    Display display ;
    public DrawingView(Context context) {
        super(context);
        mPaint = new Paint();
        mPaint.setColor(Color.RED);
        mPaint.setTextSize(50f);
        mcontext=context;
         display = ( (Activity) mcontext).getWindowManager().getDefaultDisplay();  
        x = display.getWidth()-mPaint.getTextSize(); 
        //y = display.getHeight();
        // TODO Auto-generated constructor stub
    }

    @Override
    protected void onDraw(Canvas canvas) {
        // TODO Auto-generated method stub
        super.onDraw(canvas);

        canvas.drawText("hello.....",x, 40, mPaint);
        marquee();
    }
    public void marquee()
    {
        if(x>0-mPaint.getTextSize())
        {
            x=x-20;
            try {
                Thread.sleep(1000);
            } catch (InterruptedException e) {
                // TODO Auto-generated catch block
                e.printStackTrace();
            }
            invalidate();
        }
        else if(x<=0)
        {
              x = display.getWidth()-mPaint.getTextSize(); 
              invalidate();
        }


    }
}
于 2013-04-01T07:34:19.993 回答
0

您可以按如下方式进行水平滚动。

用于文本视图的 xml

<TextView
android:id="@+id/label"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:ellipsize="marquee"
android:marqueeRepeatLimit="marquee_forever"
android:singleLine="true" />

此 TextView 的代码

如果你想做一个股票行情

textView.setSelected(true);

如果你想阻止它

textView.setSelected(false);

我假设您正在从 ListActivity 扩展您的活动。在您的 onListItemClick 中执行以下操作

public void onListItemClick(ListView parent, View row, int position, long id) {

TextView textViewOne =   (TextView)row.findViewById(R.id.text_view);
textViewOne.setSelected(true);
for (int i = 0; i < parent.getChildCount(); i++) {
    if(i!=position){
        View view = (View) parent.getChildAt(i).findViewById(R.id.view);

        textViewOne = (TextView)view.findViewById(R.id.text_view);
        textViewOne.setSelected(false);

    }
}   

}

于 2013-04-01T06:25:20.090 回答