android EditText 设置android:gravity=right获取焦点时光标不在最后处理方法

android EditText 设置android:gravity="right|center_vertical",获取焦点时 光标不在最后?  复制下面代码即可

<com....DuLastInputEditText
    android:id="@+id/presale_et"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@null"
    android:digits="0123456789"
    android:gravity="right|center_vertical"
    android:hint="请输入"
    android:inputType="number"
    android:maxLength="6"
    android:paddingRight="5dp"
    android:textColor="@color/color_c33"
    android:textColorHint="@color/color_99"
    android:textSize="13dp" />
public class DuLastInputEditText extends EditText {

    public DuLastInputEditText(Context context) {
        super(context);
    }

    public DuLastInputEditText(Context context, AttributeSet attrs) {
        super(context, attrs);
    }

    public DuLastInputEditText(Context context, AttributeSet attrs, int defStyleAttr) {
        super(context, attrs, defStyleAttr);
    }

    @Override
    protected void onFocusChanged(boolean focused, int direction, Rect previouslyFocusedRect) {
        super.onFocusChanged(focused, direction, previouslyFocusedRect);
        if (focused) {
            setCursorVisible(false);
            new Handler().postDelayed(new Runnable() {
                @Override
                public void run() {
                    setCursorVisible(true);

                    if (getText() == null) {//判空,防止出现空指针
                        setSelection(0);
                    } else {
                        setSelection(getText().length()); // 保证光标始终在最后面
                    }
                }
            }, 200);
        }
    }

    @Override
    protected void onSelectionChanged(int selStart, int selEnd) {
        super.onSelectionChanged(selStart, selEnd);
//        if (selStart == selEnd) {//防止不能多选
//            if (getText() == null) {//判空,防止出现空指针
//                setSelection(0);
//            } else {
//                setSelection(getText().length()); // 保证光标始终在最后面
//            }
//
//        }
    }
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值