无法从editText Android获取文字

时间:2014-03-15 14:54:03

标签: java android eclipse android-layout import

我在学校项目中遇到了一些问题。我无法从文本框中获取文本。我搜索了一个解决方案,但没有找到。如果有人帮助我,我将感激不尽:)

所以这是我的 Java 代码:

package com.src.vicnote;

import android.support.v7.app.ActionBarActivity;
import android.support.v7.app.ActionBar;
import android.support.v4.app.Fragment;
import android.content.Context;
import android.os.Bundle;
import android.util.Log;
import android.view.LayoutInflater;
import android.view.Menu;
import android.view.MenuItem;
import android.view.View;
import android.view.ViewGroup;
import android.widget.Button;
import android.widget.EditText;
import android.os.Build;

public class NewNoteActivity extends ActionBarActivity {

    Button saveButton;
    EditText textData;
    Context context;

    String text;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_new_note);

        saveButton = (Button) this.findViewById(R.id.buttonSave);
        saveButton.setOnClickListener(new View.OnClickListener() {

            @Override
            public void onClick(View v) {
                // TODO Auto-generated method stub

                textData = (EditText) findViewById(R.id.editText);
                text = textData.getText().toString();
                //text = "this is sparta!";
                Log.d("ADebugTag", "string: \"" + text + "\" end of note text");
                new SaveClass(text/*, context.getApplicationContext()*/);
            }
        });

        if (savedInstanceState == null) {
            getSupportFragmentManager().beginTransaction()
                    .add(R.id.container, new PlaceholderFragment()).commit();
        }
    }

    @Override
    public boolean onCreateOptionsMenu(Menu menu) {

        // Inflate the menu; this adds items to the action bar if it is present.
        getMenuInflater().inflate(R.menu.new_note, 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);
    }

    /**
     * A placeholder fragment containing a simple view.
     */
    public static class PlaceholderFragment extends Fragment {

        public PlaceholderFragment() {
        }

        @Override
        public View onCreateView(LayoutInflater inflater, ViewGroup container,
                Bundle savedInstanceState) {
            View rootView = inflater.inflate(R.layout.fragment_new_note,
                    container, false);
            return rootView;
        }
    }

}

我的 XML

<RelativeLayout 
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:id="@+id/container"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context="com.src.vicnote.NewNoteActivity"
    tools:ignore="MergeRootFrame" >

    <Button
        android:id="@+id/buttonSave"
        style="?android:attr/buttonStyleSmall"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentRight="true"
        android:layout_alignParentTop="true"
        android:text="Save" />

    <EditText
        android:id="@+id/editText"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentBottom="true"
        android:layout_alignParentLeft="true"
        android:layout_alignParentRight="true"
        android:layout_below="@+id/buttonSave"
        android:ems="10"
        android:gravity="top"
        android:inputType="textMultiLine" >

        <requestFocus />
    </EditText>
</RelativeLayout>    

另外我想问你如果文字是西里尔文会怎么样?会有什么问题吗?

3 个答案:

答案 0 :(得分:3)

如果没有logCat,就无法确定你的错误。

但可能解决问题的一件事就是替换

textData = (EditText) findViewById(R.id.editText);
text = textData.getText().toString();

textData = (EditText)getActivity().findViewById(R.id.editText);
text = textData.getText().toString();
// Toast for debugging purposes
Toast.makeText(getActivity(),text,0).show();

使用碎片时,您应该真正了解getView()&amp; getActivity()

更新

你在xml中设置了文本吗?

在实际调用getText()命令之前,需要将文本设置为某些内容。

 <EditText
    android:id="@+id/editText"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentBottom="true"
    android:layout_alignParentLeft="true"
    android:layout_alignParentRight="true"
    android:layout_below="@+id/buttonSave"
    android:ems="10"
    android:gravity="top"
    ----- add this line ------
    android:text="whatever you want"
    --------------------------
    android:inputType="textMultiLine" >

祝你好运

答案 1 :(得分:1)

在访问editText之前添加getActivity()就可以了。

例如:

EditText addressText = (EditText) getActivity().findViewById(R.id.location);

答案 2 :(得分:0)

getEditableText返回一个可编辑的对象,你不能像那样编辑对象,所以它是null。

只需改用“getText”。

我不知道西里尔语,但不应该引起任何问题。