gpt4 book ai didi

android - 在线程Android Studio中检索editText时应用程序崩溃

转载 作者:行者123 更新时间:2023-12-03 16:53:08 25 4
gpt4 key购买 nike

这类似于我之前遇到的另一个涉及应用程序崩溃的 textView 问题(已解决),但现在我遇到了 editText 问题,因为每当我尝试检索 editText.getvalue() 时,即使它在线程,它使应用程序崩溃。

这是代码:

package awsomisoft.yemeb;

import android.app.Activity;
import android.os.Bundle;
import android.view.Menu;
import android.view.MenuItem;
import android.widget.EditText;
import android.widget.TextView;
import android.widget.Toast;

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.net.MalformedURLException;
import java.net.URL;

import awsomisoft.yemeb.R;

public class List extends Activity {
private Handler handler;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_list);
final TextView urlTextOut = (TextView) findViewById(R.id.URLtextView);
final EditText sear = (EditText) findViewById(R.id.editText);
new Thread() {
StringBuilder text = new StringBuilder();
@Override
public void run() {
try

{
String str = "";
URL url = new URL("http://mydomainname.com/"+sear.getText().toString()+"/test.meb");
BufferedReader in = new BufferedReader(new InputStreamReader(url.openStream()));

while ((str = in.readLine()) != null) {
text.append(str);
}
in.close();
} catch (MalformedURLException e1)

{
} catch (IOException e)

{
}
runOnUiThread(new Runnable() {
@Override
public void run() {
urlTextOut.setText(text);
}
});
}
}.start();

}


@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.list, menu);
return true;
}

@Override
public boolean onOptionsItemSelected(MenuItem item) {
// Handle action bar item clicks here. The action bar will
// automatically handle clicks on the Home/Up button, so long
// as you specify a parent activity in AndroidManifest.xml.
int id = item.getItemId();
if (id == R.id.action_settings) {
return true;
}
return super.onOptionsItemSelected(item);
}
}

编辑:这里是 activity_list.xml -
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
android:paddingBottom="@dimen/activity_vertical_margin"
tools:context="awsomisoft.yemeb.List"
android:id="@+id/List">

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/URLtextView"
android:textSize="18dp" />

</RelativeLayout>

我之前尝试过使用 Handlers,因为我在这里找到了一个在线程中使用 editText 的解决方案,但它并没有解决问题。我假设有解决问题的方法,但我似乎找不到。我只需要一个指南来查看我需要对 editText 做什么,以确保应用程序不会崩溃。感谢您的任何帮助。如果有简单的解决方案,我深表歉意。

最佳答案

通常,您可以通过将变量声明为 final 来允许匿名类访问外部类变量。但是,在您的情况下,由于这是处理编辑文本,因此您希望此变量能够更改,因此 final 是 Not Acceptable 。

在这种情况下,最好的办法是使线程成为普通类而不是匿名类,然后在构造函数中传递变量(它必须是普通类,因为在匿名类中不能有显式声明的构造函数)。

public class MyThread implements Runnable {

StringBuilder text = new StringBuilder();
String editTextContents;

// Constructor
public MyThread(String editTextContents) { // <-- Pass in the string from EditText here
this.editTextContents = editTextContents;
}

@Override
public void run() {
try

{
String str = "";
URL url = new URL("http://mydomainname.com/"+ editTextContents +"/test.meb");
BufferedReader in = new BufferedReader(new InputStreamReader(url.openStream()));

while ((str = in.readLine()) != null) {
text.append(str);
}
in.close();
} catch (MalformedURLException e1)

{
} catch (IOException e)

{
}
runOnUiThread(new Runnable() {
@Override
public void run() {
urlTextOut.setText(text);
}
}
}
}

您可以通过以下方式调用 Activity 中的线程:
Runnable myRunnable = new MyThread(editTextContents);
new Thread(myRunnable).start;

关于android - 在线程Android Studio中检索editText时应用程序崩溃,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24899619/

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