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

时间:2014-07-22 23:43:15

标签: android crash android-edittext

这类似于我之前使用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做什么,以确保应用程序不会崩溃。感谢您的任何帮助。如果有一个简单的解决方案,我道歉。

2 个答案:

答案 0 :(得分:1)

通常,您可以通过声明变量final来允许匿名类访问外部类变量。但是在你的情况下,因为这是处理编辑文本,你希望这个变量能够改变,所以最终是不可接受的。

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

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);
            }
        }
    }
}

您可以使用以下命令调用活动中的主题:

Runnable myRunnable = new MyThread(editTextContents);
new Thread(myRunnable).start;

答案 1 :(得分:0)

如果您尝试访问的EditText不在您使用

设置的布局中
setContentView(R.layout.activity_list);

然后它会将sear设置为无法找到的视图或(null):

final EditText sear = (EditText) findViewById(R.id.editText); // null
sear.getText().toString() // will now crash your app because
                          // you're trying to access a null object

换句话说,R.id.editText需要位于布局activity_list.xml中,或者您需要使用setContentView( * )时已经存在的其他xml文件。 XML)