我正在尝试使用动态文本制作警报对话框。问题是我要编辑的文本视图位于膨胀的布局中。在我的代码的最上面是
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>
我想编辑位于“textEntryView”中的 TextView。为此,我尝试过
tv = (TextView) textEntryView.findViewById(R.id.error_dialog);
然后当我调用我的方法时:
public void attemptLogin(View v)
{
System.err.println(tv.getText());
}
它给了我一个空指针。我不明白为什么在 textEntryView 视图中找不到 id error_dialog。
谢谢。