Nullpointer试图添加textview alertdialog

时间:2013-01-19 18:51:58

标签: android textview settext

我正在尝试使用动态文本制作警告对话框。问题是我要编辑的文本视图是在一个膨胀的布局中。 在我的代码的最顶部是

 TextView tv;

所以我可以从班上的所有方法中找到它。以下代码段:

public class EditNameDialog extends DialogFragment {


    public EditNameDialog() 
        {
    }

    @Override
    public Dialog onCreateDialog(Bundle savedInstanceState) {

        LayoutInflater factory = LayoutInflater.from(getActivity());
        View textEntryView = factory.inflate(R.layout.fragment_dialog, null);

        this.setStyle(DialogFragment.STYLE_NORMAL, android.R.style.Theme_Holo_Light_Dialog);

        return new AlertDialog.Builder(getActivity())                
        .setTitle("Skapa profil")
        .setView(textEntryView)
        .setNegativeButton(R.string.cancel,
                new DialogInterface.OnClickListener() {
            public void onClick(DialogInterface dialog, int whichButton) {

            }
        }
                )
                .setPositiveButton(R.string.ok,
                        new      DialogInterface.OnClickListener() {
                    public void onClick(DialogInterface dialog, int whichButton) 
                    {

                    }
                }
                        ).create();
    }

布局文件“fragment_dialog.xml”如下所示:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="vertical" >

<TextView
    android:id="@+id/error_dialog"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:gravity="top"
    android:padding="10dp"
    android:text="@string/error_connecting"
    android:textSize="20sp" />

</LinearLayout>

我想编辑TextView,它位于“textEntryView”中。 要做到这一点,我试过

tv = (TextView) textEntryView.findViewById(R.id.error_dialog); 

然后当我打电话给我的方法时:

public void attemptLogin(View v) 
{
System.err.println(tv.getText());
}
它给了我一个Nullpointer。 我不明白为什么在textEntryView视图中找不到id error_dialog。

感谢。

3 个答案:

答案 0 :(得分:0)

我看不到你的变量电视的声明,例如:

TextView tv = (TextView) findViewById(R.id.error_dialog);  

如果你还没有声明它,你的框架(eclipse?)应该给你一个提示 那么你是否在课堂的其他部分宣布了它?

答案 1 :(得分:0)

你的问题比看起来要复杂一些。您正在丢失对小部件的引用,因为View-Object在您执行此操作时不会保留正确的View。我有同样的问题,我花了一段时间来搞清楚它。

我通过更新View-reference并将textView - 值的检索外包给生命周期后期调用的方法(如onActivityCreated()

我发布了我的示例,它有一个editText和一个Button。

我的例子:

public class EnterNumberFragment extends DialogFragment implements OnClickListener{

private EditText editText = null;
private Button acceptButton = null;
private View mContentView = null;

@Override
public Dialog onCreateDialog(Bundle savedInstanceState) {

    super.onCreate(savedInstanceState);
    AlertDialog.Builder builder = new AlertDialog.Builder(getActivity());
    LayoutInflater inflator= getActivity().getLayoutInflater();
    mContentView = inflator.inflate(R.layout.dialog_number, null);
    builder.setView(mContentView);

    return builder.create();
}

@Override
public void onActivityCreated(Bundle arg0) {
    super.onActivityCreated(arg0);
    acceptButton = (Button) mContentView.findViewById(R.id.accept_change);
    editText = (EditText) mContentView.findViewById(R.id.et_number);

    acceptButton.setOnClickListener(this);      
}

@Override
public void onClick(View v) {
    switch (v.getId()) {
        case R.id.accept_change:
            String num = editText.getText().toString();

            SharedPreferences sPrefs = getActivity().getSharedPreferences("PanicPrefs",0);
            SharedPreferences.Editor prefEditor = sPrefs.edit();
            prefEditor.putString("NumberToCall", num).commit();
            dismiss();
            break;

         default:
            break;
    }
}

答案 2 :(得分:0)

这一行存在问题: -

  LayoutInflater factory = LayoutInflater.from(getActivity());

您没有活动参考。您可以做的是传递活动上下文然后获取活动: -

LayoutInflater factory = LayoutInflater.from(mContext.getActivity());

或者您可以使用以下代码: -

LayoutInflater factory = (LayoutInflater)context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);