0

我想要做的是:当有人单击 TextView 时,它会打开一个带有 EditText 的 AlertDialog,该人在 EditText 中写一些东西,单击“Ok”,然后将 TextView 设置为该人在 EditText 上写的内容。

但我有两个问题。

第一:它不工作。当我单击“确定”时,我的应用程序崩溃了,我不知道自己做错了什么。

第二:我也有多个 TextView,我不知道如何设置特定 textview 的文本,而不必为每个 textview 创建一个新的 alertdialog。如果该人单击了 TextView A 或 B,我如何在对话框中识别?还是我应该创建另一个 AlertDialog?

我的代码:

public class Mec extends Activity implements OnClickListener {  
ImageView iv;

Button save;

TextView tSup, tInf;

EditText txt = null;


@Override
protected void onCreate(Bundle savedInstanceState) {
    // TODO Auto-generated method stub
    super.onCreate(savedInstanceState);
    setContentView(R.layout.loud);
    bts();
    Bundle extras = getIntent().getExtras();
    String vds = extras.getString("omec");
    if (vds.equals("Hello")) {
        iv.setImageResource(R.drawable.world);
    }
    else {
        return;
    }
}   
private void bts() {
    iv = (ImageView) findViewById(R.id.ivID);
    save = (Button) findViewById(R.id.btSave);
    tSup = (TextView) findViewById(R.id.txtSuperior);
    tInf = (TextView) findViewById(R.id.txtInferior);
    txt = (EditText) findViewById(R.id.et1);
}
private void poptxt() {
    AlertDialog InserirTXT = new AlertDialog.Builder(Mec.this).create();
    LayoutInflater infle = getLayoutInflater();
    View txtlayout = infle.inflate(R.layout.poptxt, null);
    InserirTXT.setView(txtlayout);
    InserirTXT.setButton("OK", new DialogInterface.OnClickListener() {

        public void onClick(DialogInterface dialog, int which) {
            // TODO Auto-generated method stub
            String texto = (String) txt.getText().toString();
            tSup.setText(texto);
        }
    });
    InserirTXT.setCancelable(true);
    InserirTXT.setCanceledOnTouchOutside(true);
    InserirTXT.show();
}

public void onClick(View v) {
    // TODO Auto-generated method stub
    switch (v.getId()) {
    case R.id.btSave:
        //After
        break;

    case R.id.txtSuperior:
        poptxt();
        break;

    case R.id.txtInferior:
        poptxt();
        break;
    }
}
}

非常感谢您的帮助!

编辑:布局:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#FFFFFF"
android:orientation="vertical"
android:weightSum="100" >

<RelativeLayout
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:layout_gravity="center_horizontal"
    android:layout_weight="73.68"
    android:orientation="vertical" >

    <ImageView
        android:id="@+id/ivID"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_centerInParent="true"
        android:src="@drawable/badluck" />

    <TextView
        android:id="@+id/txtInferior"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_alignBottom="@+id/ivID"
        android:layout_alignParentLeft="true"
        android:clickable="true"
        android:gravity="center"
        android:onClick="onClick"
        android:text="Bottom text"
        android:textColor="#FFFFFF"
        android:textSize="35dp"
        style="@style/estilotxt" />

    <TextView
        android:id="@+id/txtSuperior"
        style="@style/estilotxt"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_alignParentLeft="true"
        android:layout_alignTop="@+id/ivID"
        android:clickable="true"
        android:editable="true"
        android:gravity="center"
        android:onClick="onClick"
        android:text="Top text"
        android:textColor="#FFFFFF"
        android:textSize="35dp" />

</RelativeLayout>

<Button
    android:id="@+id/btSave"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_weight="20"
    android:text="Save" />

</LinearLayout>

日志猫:

08-08 22:23:55.101: W/dalvikvm(322): threadid=1: thread exiting with uncaught exception (group=0x4001d800)
08-08 22:23:55.121: E/AndroidRuntime(322): FATAL EXCEPTION: main
08-08 22:23:55.121: E/AndroidRuntime(322): java.lang.NullPointerException
08-08 22:23:55.121: E/AndroidRuntime(322):  at vds.cmc.Mec$1.onClick(Mec.java:89)
08-08 22:23:55.121: E/AndroidRuntime(322):  at com.android.internal.app.AlertController$ButtonHandler.handleMessage(AlertController.java:158)
08-08 22:23:55.121: E/AndroidRuntime(322):  at android.os.Handler.dispatchMessage(Handler.java:99)
08-08 22:23:55.121: E/AndroidRuntime(322):  at android.os.Looper.loop(Looper.java:123)
08-08 22:23:55.121: E/AndroidRuntime(322):  at android.app.ActivityThread.main(ActivityThread.java:4627)
08-08 22:23:55.121: E/AndroidRuntime(322):  at java.lang.reflect.Method.invokeNative(Native Method)
08-08 22:23:55.121: E/AndroidRuntime(322):  at java.lang.reflect.Method.invoke(Method.java:521)
08-08 22:23:55.121: E/AndroidRuntime(322):  at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:868)
08-08 22:23:55.121: E/AndroidRuntime(322):  at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:626)
08-08 22:23:55.121: E/AndroidRuntime(322):  at dalvik.system.NativeStart.main(Native Method)
08-08 22:23:56.950: I/Process(322): Sending signal. PID: 322 SIG: 9

编辑:谢谢你们。

我尝试在 AlertDialog 中启动 txt,但没有任何效果,所以我决定删除这部分并使用我找到的教程从头开始重写它。现在它正在工作,但我仍然不知道我做错了什么。

谢谢!

4

4 回答 4

1

请执行下列操作

创建一个xml

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
          android:id="@+id/layout_root"
          android:orientation="horizontal"
          android:layout_width="fill_parent"
          android:layout_height="fill_parent"
          android:padding="10dp"
          >
<ImageView android:id="@+id/image"
           android:layout_width="wrap_content"
           android:layout_height="fill_parent"
           android:layout_marginRight="10dp"
           />
<TextView android:id="@+id/text"
          android:layout_width="wrap_content"
          android:layout_height="fill_parent"
          android:textColor="#FFF"
          />
 </LinearLayout>

然后创建一个对话框并将布局设置为其内容视图

Context mContext = getApplicationContext();
Dialog dialog = new Dialog(mContext);

dialog.setContentView(R.layout.custom_dialog);
dialog.setTitle("Custom Dialog");

TextView text = (TextView) dialog.findViewById(R.id.text);
text.setText("Hello, this is a custom dialog!");
ImageView image = (ImageView) dialog.findViewById(R.id.image);
image.setImageResource(R.drawable.android);
于 2012-08-09T02:03:45.013 回答
0
public class Mec extends Activity implements OnClickListener {

  AlertDialog.Builder builder;
  LinearLayout lila;
  EditText et;

  @Override
  protected void onCreate(Bundle savedInstanceState) {
      // TODO Auto-generated method stub
      super.onCreate(savedInstanceState);
      setContentView(R.layout.loud);

      builder = new AlertDialog.Builder(this);
      lila = new LinearLayout(this);
      et = new EditText(this);

      lila.addView(et);

      builder.setView(lila);
      builder.show();
  } 

}

这应该会给你一个很好的警报对话框,里面有一个 EditText!:) 现在,如果您将 builder.show() 放在另一个按钮的 onClickListener 中,则警报对话框只会在单击该按钮时显示。我希望这就是你要找的。

编辑:要设置文本视图,您只需说类似 textfield.setText(et.getText()); -- 您可能必须将其转换为字符串,但这是基本思想......

于 2012-08-09T01:25:31.920 回答
0

让你的代码像这样

private void poptxt() {
AlertDialog InserirTXT = new AlertDialog.Builder(Mec.this).create();
LayoutInflater infle = getLayoutInflater();
View txtlayout = infle.inflate(R.layout.poptxt, null);
InserirTXT.setView(txtlayout);
tSup = (TextView) InserirTXT.findViewById(R.id.txtSuperior); //THE PROBLEM
txt = (EditText) InserirTXT.findViewById(R.id.et1);
InserirTXT.setButton("OK", new DialogInterface.OnClickListener() {

    public void onClick(DialogInterface dialog, int which) {
        // TODO Auto-generated method stub
        String texto = (String) txt.getText().toString();
        tSup.setText(texto);
    }
});
InserirTXT.setCancelable(true);
InserirTXT.setCanceledOnTouchOutside(true);
InserirTXT.show();
}

您正在使用您设置布局tSup and txt的上下文进行初始化,但没有. 这两个视图在您的布局中。我对么?而你正在膨胀。 所以用对话框视图而不是视图来初始化它们。ActivityloudR.id.txtSuperior and R.id.et1poptxtpoptxtpoptxt()Activity's

于 2012-08-09T03:41:48.310 回答
0

您的布局文件和 LogCat 输出在这里会有所帮助,但即使没有它,我也会看到一个潜在的问题:

String texto = (String) txt.getText().toString();
tSup.setText(texto);

鉴于您的描述,我相信这txt是您的编辑字段AlertDialog,因此它是在创建bts()之前调用的方法中初始化的AlertDialog,它将是null。将其初始化移至AlertDialog创建之后。

于 2012-08-09T01:04:55.147 回答