gpt4 book ai didi

java - Android:不断用新值更新 TextView

转载 作者:行者123 更新时间:2023-12-01 14:50:45 25 4
gpt4 key购买 nike

我需要一些关于如何使用通过我的代码生成的值更新位于 XML 中的 Textview 的建议。

程序在 Canvas 上绘制一条直线,我希望 textView 反射(reflect)该线的尖端 x 值。

我的代码如下:

package com.example.threadexperiment1;

import android.app.Activity;
import android.content.Context;
import android.graphics.Canvas;
import android.graphics.Color;
import android.graphics.Paint;
import android.os.Bundle;
import android.view.View;
import android.widget.RelativeLayout;
import android.widget.TextView;

public class MainActivity extends Activity {

lineDrawing InfiniteLine;

@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
InfiniteLine = new lineDrawing (this);
setContentView(R.layout.activity_main);

Thread thread = new Thread(InfiniteLine);
thread.start();

RelativeLayout RL1 = (RelativeLayout)findViewById(R.id.RelativeLayout1);
RL1.addView(InfiniteLine);

}
public class lineDrawing extends View implements Runnable {

float x=100, y=100;
Paint lineColour = new Paint ();
TextView TV1 = (TextView)findViewById(R.id.textView1);

//Constructor
public lineDrawing(Context context) {
super(context);
lineColour.setColor(Color.BLACK);
}

//ondraw codes
@Override
public void onDraw (Canvas canvas){
canvas.drawLine(0,0,x,y,lineColour);

if (x==500){
x=0;
y=0;
}

invalidate();
}

@Override
public void run() {
while (!Thread.currentThread().isInterrupted()) {

try {
Thread.sleep(250);
}

catch (Exception e) {}
x+=10;
y+=10;
}

}

}

}

最佳答案

在线程中尝试 textView.setText(string)。

关于java - Android:不断用新值更新 TextView,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14889263/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com