gpt4 book ai didi

android - TextView无法解析

转载 作者:塔克拉玛干 更新时间:2023-11-02 08:18:46 25 4
gpt4 key购买 nike

现在我知道这些是相当常见的问题,但我使用的是无法解决的 TextView 。我已经清理了项目,导入了 android.widget.TextView,但它继续标记为未解决。

这是我正在使用的代码:

public void onStart() {
super.onStart();

HttpClient client = new DefaultHttpClient();
HttpGet request = new HttpGet("http://1.php");
HttpResponse response = client.execute(request);

// Get the response
BufferedReader rd = new BufferedReader
(new InputStreamReader(response.getEntity().getContent()));

String line = "";
while ((line = rd.readLine()) != null) {
TextView.append(line);
}

}

activity_main 中的 TextView:

<TextView
android:id="@+id/TextView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:ems="10">



</TextView>

请问有什么想法吗?

编辑:

TextView textView = (TextView) findViewById(R.id.TextView1);

String line = "";
while ((line = rd.readLine()) != null) {
TextView1.append(line);
}

以 TextView1 开头的结束行提供了表明无法解决的错误。不过只是 TextView1,而不是整行。

编辑 28/10/2012:

好的,所以 TextView 现在可以工作了,但是反过来,代码的其他部分却没有。这是一个屏幕截图,显示了究竟是什么。我可以将这些中的每一个都包装在一个 try and catch 语句中,但随后应用程序会在我的 Android 设备上强制关闭。

http://southwestdesign.org.uk/Code.jpg

请问有什么想法吗?

最佳答案

你导入textview了吗?

import android.widget.TextView;

关于android - TextView无法解析,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13089575/

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