textview读取listview内容并显示
时间: 2023-12-02 08:02:24 浏览: 129
c#读取listview控件内容
5星 · 资源好评率100%
您可以使用ListView的getItemAtPosition()方法来获取要显示的文本,然后将其设置到TextView中。示例代码如下:
ListView listView = findViewById(R.id.listview);
TextView textView = findViewById(R.id.textview);
//获取ListView中第一个位置的文本
String text = listView.getItemAtPosition(0).toString();
//将文本设置到TextView中
textView.setText(text);
阅读全文