Android EditText宽度,因为提示

前端之家收集整理的这篇文章主要介绍了Android EditText宽度,因为提示前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个EditText.
当我有少于8个字符时,EditText具有最小宽度.
我想使用wrap_content.

这是因为暗示造成的.

我怎么解决这个问题?
我尝试了一切.

我想这样:

这是我的代码

<EditText
        android:id="@+id/et_actionbar_title"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="YOLO"
        android:hint="New team"
        android:gravity="center"
        android:textColor="@color/gray1"
        android:textStyle="bold"
        android:background="@color/gold"
        android:layout_centerInParent="true"

        android:minWidth="0dp"
        android:minEms="0"
        android:minHeight="0dp"
        android:paddingLeft="0dp"
        android:layout_marginLeft="0dp"

        />

解决方法

唯一的方法删除提示或减少提示字符串的长度.
如果您不想删除提示,请在将文本输入EditText时将其隐藏.
editText.addTextChangedListener(new TextWatcher() {

            @Override
            public void onTextChanged(CharSequence arg0,int arg1,int arg2,int arg3) {

                if(!TextUtils.isEmpty(editText.getText().toString())){
                    editText.setHint("");
                 }else{
                    edittext.setHint(R.string.hint);
                 }

            }

            @Override
            public void beforeTextChanged(CharSequence arg0,int arg3) {
                // TODO Auto-generated method stub

            }

            @Override
            public void afterTextChanged(Editable arg0) {
                // TODO Auto-generated method stub

            }
        });
原文链接:https://www.f2er.com/android/317265.html

猜你在找的Android相关文章