วิธีสร้างกล่อง edittext ในกล่องโต้ตอบ


211

ฉันกำลังพยายามสร้างกล่อง edittext ในกล่องโต้ตอบสำหรับป้อนรหัสผ่าน และเมื่อฉันทำฉันไม่สามารถทำ ฉันเป็นผู้เริ่มต้นอยู่ในนั้น โปรดช่วยฉันในเรื่องนี้

public class MainActivity extends Activity {

Button create, show, setting;
//String pass="admin";String password;

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

    create = (Button)findViewById(R.id.amcreate);
    setting = (Button)findViewById(R.id.amsetting);
    show = (Button)findViewById(R.id.amshow);
    //input = (EditText)findViewById(R.id.this);

    setting.setVisibility(View.INVISIBLE);

    create.setOnClickListener(new View.OnClickListener() {
        public void onClick(View view) {
            Intent myIntent1 = new Intent(view.getContext(), Create.class);
            startActivityForResult(myIntent1, 0);
        }

    });

    show.setOnClickListener(new View.OnClickListener() {
        //@SuppressWarnings("deprecation")
        public void onClick(final View view) {

            // Creating alert Dialog with one Button
            AlertDialog.Builder alertDialog = new AlertDialog.Builder(MainActivity.this);

            //AlertDialog alertDialog = new AlertDialog.Builder(MainActivity.this).create();

            // Setting Dialog Title
            alertDialog.setTitle("PASSWORD");

            // Setting Dialog Message
            alertDialog.setMessage("Enter Password");
            **final EditText input = new EditText(this);**
            //alertDialog.setView(input);

            // Setting Icon to Dialog
            alertDialog.setIcon(R.drawable.key);

            // Setting Positive "Yes" Button
            alertDialog.setPositiveButton("YES",
                    new DialogInterface.OnClickListener() {
                        public void onClick(DialogInterface dialog,int which) {
                            // Write your code here to execute after dialog
                            Toast.makeText(getApplicationContext(),"Password Matched", Toast.LENGTH_SHORT).show();
                            Intent myIntent1 = new Intent(view.getContext(), Show.class);
                            startActivityForResult(myIntent1, 0);
                        }
                    });
            // Setting Negative "NO" Button
            alertDialog.setNegativeButton("NO",
                    new DialogInterface.OnClickListener() {
                        public void onClick(DialogInterface dialog, int which) {
                            // Write your code here to execute after dialog
                            dialog.cancel();
                        }
                    });

            // closed

            // Showing Alert Message
            alertDialog.show();
        }

    }); 

ภาพ

ป้อนคำอธิบายรูปภาพที่นี่

ฉันต้องการที่จะเป็น

ป้อนคำอธิบายรูปภาพที่นี่

 AlertDialog.Builder alertDialog = new AlertDialog.Builder(MainActivity.this);
 alertDialog.setTitle("PASSWORD");
 alertDialog.setMessage("Enter Password");

 final EditText input = new EditText(MainActivity.this);
 LinearLayout.LayoutParams lp = new LinearLayout.LayoutParams(
     LinearLayout.LayoutParams.MATCH_PARENT,
     LinearLayout.LayoutParams.MATCH_PARENT);
 input.setLayoutParams(lp);
 alertDialog.setView(input);
 alertDialog.setIcon(R.drawable.key);

 alertDialog.setPositiveButton("YES",
     new DialogInterface.OnClickListener() {
         public void onClick(DialogInterface dialog, int which) {
             password = input.getText().toString();
             if (password.compareTo("") == 0) {
                 if (pass.equals(password)) {
                     Toast.makeText(getApplicationContext(),
                         "Password Matched", Toast.LENGTH_SHORT).show();
                     Intent myIntent1 = new Intent(view.getContext(),
                         Show.class);
                     startActivityForResult(myIntent1, 0);
                 } else {
                     Toast.makeText(getApplicationContext(),
                         "Wrong Password!", Toast.LENGTH_SHORT).show();
                 }
             }
         }
     });

 alertDialog.setNegativeButton("NO",
     new DialogInterface.OnClickListener() {
         public void onClick(DialogInterface dialog, int which) {
             dialog.cancel();
         }
     });

 alertDialog.show();
 }

 });

1
ตรวจสอบdeveloper.android.com/guide/topics/ui/notifiers/toasts.htmlนี้ ตรวจสอบตำแหน่งขนมปังปิ้ง แต่ฉันเดาว่ามันจะดีกว่าถ้าคุณพูดถึง edittext
Raghunandan

คำตอบ:


171

ใช้บริบทของ Activtiy

แทนที่สิ่งนี้

  final EditText input = new EditText(this);

โดย

  final EditText input = new EditText(MainActivity.this);  
  LinearLayout.LayoutParams lp = new LinearLayout.LayoutParams(
                        LinearLayout.LayoutParams.MATCH_PARENT,
                        LinearLayout.LayoutParams.MATCH_PARENT);
  input.setLayoutParams(lp);
  alertDialog.setView(input); // uncomment this line

1
@ Abhishek wher คือการเริ่มต้นของคุณ กดDialog dialog = new Dialog(MainActivity.this)ไลค์ ฉันคิดว่าคุณคัดลอกโค้ดของคุณจากที่อื่นผมคิดว่า
Raghunandan

1
@ Abhishek ขอโทษฉันสับสนมันคิดว่าคุณมีการโต้ตอบที่กำหนดเอง public void onClick(DialogInterface dialogข้อความโต้ตอบของมัน การใช้ที่ไม่ใช่ปัญหาคุณคลิกปุ่มลบเพื่อยกเลิกการแจ้งเตือน
Raghunandan

1
@Abhishek แสดงข้อความขนมปังปิ้งหรือตั้งข้อผิดพลาดสำหรับ edittext stackoverflow.com/questions/7747268/…
Raghunandan

1
Toast toast = Toast.makeText (MainActivity.this "กรุณาใส่รหัสผ่าน!", Toast.LENGTH_LONG); toast.setGravity (Gravity.CENTER, 0, 0); toast.show (); สิ่งนี้ใช้ได้สำหรับฉันที่จะได้ขนมปังปิ้งในศูนย์
Abb

5
สวัสดี Raghu ถ้าฉันต้องการวางระยะขอบซ้ายและขวาไปยังกล่อง edittext นี้ฉันควรจะเขียนอะไร ฉันพยายามหลายคำตอบเพื่อให้อัตรากำไรขั้นต้นชุดโปรแกรม แต่ไม่มีอะไรทำงาน :(
ลูซิเฟอร์

287

ฉันรู้ว่ามันสายเกินไปที่จะตอบคำถามนี้ แต่สำหรับคนอื่น ๆ ที่กำลังค้นหาสิ่งที่คล้ายกับที่นี่คือรหัสง่ายๆของ alertbox พร้อม edittext

AlertDialog.Builder alert = new AlertDialog.Builder(this); 

หรือ

new AlertDialog.Builder(mContext, R.style.MyCustomDialogTheme);

หากคุณต้องการเปลี่ยนธีมของไดอะล็อก

final EditText edittext = new EditText(ActivityContext);
alert.setMessage("Enter Your Message");
alert.setTitle("Enter Your Title");

alert.setView(edittext);

alert.setPositiveButton("Yes Option", new DialogInterface.OnClickListener() {
    public void onClick(DialogInterface dialog, int whichButton) {
        //What ever you want to do with the value
        Editable YouEditTextValue = edittext.getText();
        //OR
        String YouEditTextValue = edittext.getText().toString();
    }
});

alert.setNegativeButton("No Option", new DialogInterface.OnClickListener() {
    public void onClick(DialogInterface dialog, int whichButton) {
        // what ever you want to do with No option.
    }
});

alert.show();

ฉันควรวางรหัสนี้ที่ไหน เมื่อฉันลองทำสิ่งนี้ในเมธอดและ EditText ฟิลด์สุดท้ายที่วางไว้บนสุดของคลาสมันจะล้มเหลว
cerbin

ความผิดพลาดคืออะไร?
Syeda Zunaira

10
จะให้ส่วนต่างให้กับข้อความแก้ไขนี้ได้อย่างไร
Ghanshyam Nayma

1
ข้อเสนอแนะที่ดีของหัวข้อที่ถาม แต่ต้องการความคิดเห็นสไตล์ Android ไม่ใช่ Windows และไม่จำเป็นต้องมีปุ่มยกเลิกอย่างที่ต้องการใน Win32 มีปุ่ม "ย้อนกลับ" ของระบบปฏิบัติการที่ทำหน้าที่เป็นยกเลิก / ไม่ ดังนั้นข้อเสนอแนะของฉันคือการข้ามปุ่มลบในกล่องโต้ตอบคำขอรหัสผ่านและปุ่มบวกไม่ควรเป็น "ใช่" แต่ควรเป็น "ตกลง" (และทำให้เป็นภาษาท้องถิ่นโดยใช้ android.R.string.ok) ดูเพิ่มเติมในคำตอบของฉันในหัวข้อstackoverflow.com/questions/11459827/…
Jan Bergström

2
ฟิลด์แก้ไขควรเป็นหนึ่งซับ (edittext.setSingleLine ();) ในคำขอรหัสผ่าน (เพราะเป็น) และทำให้การกด Enter บนแป้นพิมพ์กายภาพ (BT) ที่แนบ (หรือ Chromebook) ทำให้โฟกัสพุ่งไปที่ รายการถัดไปปุ่มบวก หมายความว่าหลังจากป้อนข้อความแล้วการกด Enter สองครั้งที่บทสนทนาจะสิ้นสุดลงในเชิงบวก
ม.ค. Bergström

36

ง่ายที่สุดของทั้งหมดจะเป็น

  • สร้างไฟล์เลย์เอาต์ xml สำหรับการโต้ตอบ เพิ่มมุมมองสิ่งที่คุณต้องการเช่น EditText, ListView, Spinner เป็นต้น

    ขยายมุมมองนี้และตั้งค่านี้เป็น AlertDialog

เริ่มจากไฟล์เลย์เอาต์ก่อน

<?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:gravity="center_horizontal"
    android:orientation="vertical">


    <EditText
        android:id="@+id/etComments"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:gravity="top"
        android:hint="Enter comments(Optional)"
        android:inputType="textMultiLine"
        android:lines="8"
        android:maxLines="3"
        android:minLines="6"
        android:scrollbars="vertical" />

</LinearLayout>

final View view = layoutInflater.inflate(R.layout.xml_file_created_above, null);
AlertDialog alertDialog = new AlertDialog.Builder(ct).create();
alertDialog.setTitle("Your Title Here");
alertDialog.setIcon("Icon id here");
alertDialog.setCancelable(false);
Constant.alertDialog.setMessage("Your Message Here");


final EditText etComments = (EditText) view.findViewById(R.id.etComments);

alertDialog.setButton(AlertDialog.BUTTON_POSITIVE, "OK", new OnClickListener() {
    @Override
    public void onClick(DialogInterface dialog, int which) {

    }
});


alertDialog.setButton(AlertDialog.BUTTON_NEGATIVE, "Cancel", new OnClickListener() {
    @Override
    public void onClick(DialogInterface dialog, int which) {
        alertDialog.dismiss()
    }
});


alertDialog.setView(view);
alertDialog.show();

3
คุณเป็นฮีโร่อะไร
AdamMcquiff

ฉันผิดพลาด ฉันพบสาเหตุที่ฉันทำผิดพลาดคือฉันพลาด 'มุมมอง' บน findViewById ตอนนี้ฉันแค่ต้องรู้วิธีจัดการกับกล่องกาเครื่องหมายเพื่อให้ฉันสามารถแสดงหรือซ่อนรหัสผ่านในขณะที่กล่องโต้ตอบยังมีชีวิตอยู่ พยายามใช้หลายไอเท็ม แต่เพิ่มกล่องกาเครื่องหมายของมันเองนอกเหนือจากไอเท็มในเลย์เอาต์ของฉัน!
ไบรอันไรน์โฮลด์

23

รุ่นง่าย

final EditText taskEditText = new EditText(this);
AlertDialog dialog = new AlertDialog.Builder(this)
        .setTitle("Add a new task")
        .setMessage("What do you want to do next?")
        .setView(taskEditText)
        .setPositiveButton("Add", new DialogInterface.OnClickListener() {
            @Override
            public void onClick(DialogInterface dialog, int which) {
                String task = String.valueOf(taskEditText.getText());
                SQLiteDatabase db = mHelper.getWritableDatabase();
                ContentValues values = new ContentValues();
                values.put(TaskContract.TaskEntry.COL_TASK_TITLE, task);
                db.insertWithOnConflict(TaskContract.TaskEntry.TABLE,
                        null,
                        values,
                        SQLiteDatabase.CONFLICT_REPLACE);
                db.close();
                updateUI();
            }
        })
        .setNegativeButton("Cancel", null)
        .create();
dialog.show();
return true;

12

ลองรหัสด้านล่าง:

alert.setTitle(R.string.WtsOnYourMind);

 final EditText input = new EditText(context);
 input.setHeight(100);
 input.setWidth(340);
 input.setGravity(Gravity.LEFT);

 input.setImeOptions(EditorInfo.IME_ACTION_DONE);
 alert.setView(input);

5

การตั้งค่าระยะขอบในเลย์เอาต์เค้าโครงจะไม่ทำงานใน Alertdialog คุณต้องตั้งค่าการเติมเต็มในเค้าโครงหลักแล้วเพิ่ม edittext ในเค้าโครงนั้น

นี่คือรหัส kotlin ที่ทำงานของฉัน ...

val alert =  AlertDialog.Builder(context!!)

val edittext = EditText(context!!)
edittext.hint = "Enter Name"
edittext.maxLines = 1

val layout = FrameLayout(context!!)

//set padding in parent layout
layout.setPaddingRelative(45,15,45,0)

alert.setTitle(title)

layout.addView(edittext)

alert.setView(layout)

alert.setPositiveButton(getString(R.string.label_save), DialogInterface.OnClickListener {

    dialog, which ->
    run {

        val qName = edittext.text.toString()

        Utility.hideKeyboard(context!!, dialogView!!)

    }

})
alert.setNegativeButton(getString(R.string.label_cancel), DialogInterface.OnClickListener {

            dialog, which ->
            run {
                dismiss()
            }

})

alert.show()

4

คุณยังสามารถสร้างกล่องโต้ตอบการแจ้งเตือนที่กำหนดเองโดยการสร้างไฟล์ xml

dialoglayout.xml

   <EditText
    android:id="@+id/dialog_txt_name"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:layout_margin="10dp"
    android:hint="Name"
    android:singleLine="true" >

    <requestFocus />
  </EditText>
   <Button
        android:id="@+id/btn_login"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginLeft="60dp"
        android:background="@drawable/red"
        android:padding="5dp"
        android:textColor="#ffffff"
        android:text="Submit" />

    <Button
        android:id="@+id/btn_cancel"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginLeft="10dp"
        android:layout_toRightOf="@+id/btn_login"
        android:background="@drawable/grey"
        android:padding="5dp"
        android:text="Cancel" />

รหัส Java:

@Override//to popup alert dialog
public void onClick(View arg0) {
    // TODO Auto-generated method stub
    showDialog(DIALOG_LOGIN);
});


@Override
protected Dialog onCreateDialog(int id) {
    AlertDialog dialogDetails = null;

    switch (id) {
        case DIALOG_LOGIN:
            LayoutInflater inflater = LayoutInflater.from(this);
            View dialogview = inflater.inflate(R.layout.dialoglayout, null);
            AlertDialog.Builder dialogbuilder = new AlertDialog.Builder(this);
            dialogbuilder.setTitle("Title");
            dialogbuilder.setView(dialogview);
            dialogDetails = dialogbuilder.create();
            break;
    }
    return dialogDetails;
}

@Override
protected void onPrepareDialog(int id, Dialog dialog) {
    switch (id) {
        case DIALOG_LOGIN:
             final AlertDialog alertDialog = (AlertDialog) dialog;
             Button loginbutton = (Button) alertDialog
                .findViewById(R.id.btn_login);
             Button cancelbutton = (Button) alertDialog
                .findViewById(R.id.btn_cancel);
             userName = (EditText) alertDialog
                .findViewById(R.id.dialog_txt_name);
             loginbutton.setOnClickListener(new View.OnClickListener() {
                  @Override
                  public void onClick(View v) {
                      String name = userName.getText().toString();
                      Toast.makeText(Activity.this, name,Toast.LENGTH_SHORT).show();
             });
             cancelbutton.setOnClickListener(new View.OnClickListener() {
                      @Override
                      public void onClick(View v) {
                           alertDialog.dismiss();
                      }
             });
             break;
   }
}

นี่คือสิ่งที่ฉันต้องการ แต่ฉันจะใช้สิ่งนี้อย่างไรในข้อผิดพลาดในการแสดงชิ้นส่วน
Raju

0

คำตอบของ Wasim ทำให้ฉันไปในทิศทางที่ถูกต้อง แต่ฉันต้องทำการเปลี่ยนแปลงบางอย่างเพื่อให้มันทำงานกับโครงการปัจจุบันของฉัน ฉันใช้ฟังก์ชันนี้ในส่วนและเรียกใช้เมื่อคลิกปุ่ม

fun showPostDialog(title: String) {
        val alert =  AlertDialog.Builder(activity)

        val edittext = EditText(activity)
        edittext.hint = "Enter Name"
        edittext.maxLines = 1

        var layout = activity?.let { FrameLayout(it) }

        //set padding in parent layout
//        layout.isPaddingRelative(45,15,45,0)
        layout?.setPadding(45,15,45,0)

        alert.setTitle(title)

        layout?.addView(edittext)

        alert.setView(layout)

        alert.setPositiveButton(getString(R.string.label_save), DialogInterface.OnClickListener {

                dialog, which ->
            run {

                val qName = edittext.text.toString()

                showToast("Posted to leaderboard successfully")

                view?.hideKeyboard()

            }

        })
        alert.setNegativeButton(getString(R.string.label_cancel), DialogInterface.OnClickListener {

                dialog, which ->
            run {
                dialog.dismiss()
            }

        })

        alert.show()
    }

    fun View.hideKeyboard() {
        val imm = context.getSystemService(Context.INPUT_METHOD_SERVICE) as InputMethodManager
        imm.hideSoftInputFromWindow(windowToken, 0)
    }

    fun showToast(message: String) {
        Toast.makeText(activity, message, Toast.LENGTH_LONG).show()
    }

ฉันหวังว่ามันจะช่วยคนอื่นในอนาคตอันใกล้ การเข้ารหัสที่มีความสุข!

โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.