1.遇到一个很奇怪的兼容问题,EditText中输入的文字在部分努比亚手机上无法居中,其他手机无此问题。布局文件如下:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
tools:context=".MainActivity">
<EditText
android:id="@+id/textview"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:hint="Hello World!"
android:inputType="text"
android:maxLines="1" />
</LinearLayout>
2.实际显示效果:
3.解决方法:
在代码中设置文字对齐方式(在布局文件中设置textAlignment是无效的):
EditText editText = findViewById(R.id.textview);
editText.setTextAlignment(View.TEXT_ALIGNMENT_CENTER);
4.修改后效果: