我已经实现了一个EditText,我希望文本从它开始是正确的,我通过set
实现了 gravity = right
但是默认光标仍显示在我的文字左侧。
这是我到目前为止所尝试的:
和EditText Field的样式表代码。
<style name="_style_user_profile_editText" parent="@android:style/Widget.EditText">
<item name="android:layout_width">match_parent</item>
<item name="android:layout_height">wrap_content</item>
<item name="android:layout_weight">1</item>
<item name="android:textCursorDrawable">@drawable/cursor_color_blue</item>
<item name="android:inputType">textNoSuggestions</item>
<item name="android:gravity">right</item>
<item name="android:singleLine">true</item>
<item name="android:hint">e.g Joe jr.</item>
<item name="android:background">@android:color/transparent</item>
</style>
我尝试使用<item name="android:ellipsize">end</item>
,但结果保持不变..
任何其他建议将光标位置保持在右边?
答案 0 :(得分:0)
考虑这种解决方法:
使用另一个TextView“hintView”来显示提示文本“例如Joe jr。”。并将TextWatcher添加到EditText:
et.addTextChangedListener(new TextWatcher() {
@Override
public void beforeTextChanged(CharSequence s, int start, int count, int after) {
}
@Override
public void onTextChanged(CharSequence s, int start, int before, int count) {
}
@Override
public void afterTextChanged(Editable s) {
// Change the hintView's visibility.
hintView.setVisibility(TextUtils.isEmpty(s) ? View.VISIBLE : View.GONE);
}
});