gpt4 book ai didi

android - 如何通过按下按钮更改 TextView 的文本

转载 作者:塔克拉玛干 更新时间:2023-11-01 21:50:05 24 4
gpt4 key购买 nike

我想通过按 Button 来更改 TextView 的,但不知道如何正确执行。

这是我的布局的一部分:

<TextView android:id="@+id/counter"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Text" />
<Button android:id="@+id/button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Change text!" />

这是我的 Activity :

public class Click extends Activity {
protected void onCreate(Bundle icicle) {
super.onCreate(icicle);
setContentView(R.layout.main);
final Button button = (Button) findViewById(R.id.button);
button.setOnClickListener(new View.OnClickListener() {
public void onClick(View v) {
// Perform action on click
// ???
}
});
}
}

我应该在 onClick() 方法中放入什么?

最佳答案

根据: http://developer.android.com/reference/android/widget/TextView.html

TextView view = (TextView) findViewById(R.id.counter);
view.setText("Do whatever");

关于android - 如何通过按下按钮更改 TextView 的文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6716748/

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