我在使用TextView时遇到麻烦。我之前从未见过此问题,Google也没有帮助。 我有TextViews和文本,它们在xml中像字符串资源一样定义。
<?xml version="1.0" encoding="utf-8"?>
...
<TextView
android:id="@+id/TVName"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="@string/name"
android:textSize="@dimen/textViewTextSize"
android:textStyle="bold"
android:textColor="@color/white"
android:textAllCaps="true"
android:layout_marginEnd="@dimen/marginBetweenTextViewsEnd"
android:background="@color/gray41"
/>
...
在我的代码中,我正在为此TextView做append()
public class Page extends AppCompatActivity {
TextView TVName;
protected void onCreate(Bundle savedInstanceState) {
setContentView(R.layout.activity_profile);
TVName = findViewById(R.id.TVName);
TVName.append(" " + "danya");
}
}
string.xml
<resources>
<string name="name">Name:</string>
</resources>
我得到的不是象NAME: danya
那样的象形文字,而是像“ NAME:3ô”这样的垃圾。
首先,我通过Retrofit从服务器获取append()
的文本,并认为这是来自服务器的格式错误的文本,但是当我尝试上述代码时,问题又重演了。
当我更改setText()
的附加内容时-一切正常。
我也尝试过在android:text="Name:"
之类的文本上更改xml中的字符串资源,但是存在相同的问题。
所有以UTF-8编码的文件一如既往,并且不是手动编码。
答案 0 :(得分:1)
更好的解决方案是在您的string.xml
中添加这样的字符串:
<resources>
<string name="name">Name: %s</string>
</resources>
然后,而不是在xml中设置该字符串,只需以编程方式设置它即可:
TVName = findViewById(R.id.TVName);
String formattedName = String.format(getResources().getString(R.string.name), "danya");
TVName.setText(formattedName);
以下是对String::format
以及可用于传递不同数据格式的所有参数的很好的解释:commit 8ba48542
答案 1 :(得分:0)
我尝试删除textAllCaps属性,并且...有效。我认为append不适用于textAllCaps。 但是我的代码中需要大写,所以我的解决方法是:
String getSTVName = TVName.getText().toString();
String STVName = String.format(getSTVName, "danya");
TVName.setText(STVName);