把光标放在setHint TextView android之后

时间:2018-05-15 08:53:02

标签: android textview android-cursor

我尝试在setHint之后将光标放在TextView中。 这是我的代码,我试图使用setFocus,setSelection,但它不起作用。

if (ctrl instanceof TextView)
    {
        TextView ctrlCtrl = (TextView)ctrl;
        ctrlCtrl.setTextColor(textColor);
        ctrlCtrl.setTextSize(textSize);
        java.lang.String placeholder = getPlaceholder();
        if (!StringUtil.isNullOrEmpty(placeholder))
        {
            ctrlCtrl.setHint(placeholder);
            int placeholderColorDefault = Color.argb(130, Color.red(textColor), Color.green(textColor), Color.blue(textColor));
            ctrlCtrl.setHintTextColor(getColorStyle(FieldStyle.PLACEHOLDER_COLOR, getColorStyle(FieldStyle.PLACEHOLDERTEXTCOLOR, placeholderColorDefault)));
        }
    }

0 个答案:

没有答案