gpt4 book ai didi

android - Edittext 光标在棉花糖 rtl 支持的布局中中断

转载 作者:塔克拉玛干 更新时间:2023-11-03 01:15:41 26 4
gpt4 key购买 nike

enter image description here

我在棉花糖中遇到了奇怪的问题。当区域设置为 ar 并且我输入英文文本时,edittext 中的光标会中断

引用截图

<EditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:ems="10"
android:gravity="left|start"
android:hint="@string/app_name"
android:inputType="textPassword"
android:padding="10dp"
android:textAlignment="viewStart"
android:textDirection="locale">
<requestFocus/>

最佳答案

我用下面的方法解决了它..

在您的 xml 布局中,为编辑文本字段添加此 --> android:textDirection="anyRtl"

在这里,“editText”是您编辑文本字段的 View 。即,

EditText editText = (EditText) findViewById(R.id.edit_text); 

然后以编程方式为该编辑文本添加文本观察器。

    editText.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) {
editText.setSelection(s.length()); // this line is very important for setting cursor position
}

@Override
public void afterTextChanged(Editable s) {

}
});
}

这对我有用!

关于android - Edittext 光标在棉花糖 rtl 支持的布局中中断,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35789031/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com