简体   繁体   中英

The text of the edittext can't modified

guys I want to keep the edittext text can't modified or cleaned by the user like i want https://www to be fixed no one can clean it but the user can write in the edittext

<EditText
            android:layout_width="300dp"
            android:layout_height="50dp"
            android:gravity="center"
            android:hint="Enter a website"
            android:text="https://www."
            android:id="@+id/et_web"/>

Source

final EditText edt = (EditText) findViewById(R.id.editText1);

    edt.setText("http://");
    Selection.setSelection(edt.getText(), edt.getText().length());


    edt.addTextChangedListener(new TextWatcher() {

            @Override
            public void onTextChanged(CharSequence s, int start, int before, int count) {
                // TODO Auto-generated method stub

            }

            @Override
            public void beforeTextChanged(CharSequence s, int start, int count,
                    int after) {
                // TODO Auto-generated method stub

            }

            @Override
            public void afterTextChanged(Editable s) {
                if(!s.toString().startsWith("http://")){
                    edt.setText("http://");
                    Selection.setSelection(edt.getText(), edt.getText().length());

                }

            }
        });

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM