gpt4 book ai didi

java - TextView 显示 STRING_TOO_LARGE

转载 作者:塔克拉玛干 更新时间:2023-11-03 00:43:39 30 4
gpt4 key购买 nike

一段时间以来,我一直在尝试将一个大字符串(超过 25k 个字符)设置为 TextView,但我一直得到“STRING_TOO_LARGE”输出。

我在某处读到,在运行时设置字符串可能有助于解决该问题,因此我修改了我的代码,但似乎没有帮助。我还尝试直接在 setText() 中设置资源 ID,但这并没有起到任何作用。

我在 Activity 中使用以下方法来显示 terms_dialog:

private void showTermsPopup() {
Dialog termsDialog = new Dialog(this);
termsDialog.setContentView(R.layout.terms_dialog);
termsDialog.getWindow().setLayout(WindowManager.LayoutParams.WRAP_CONTENT,
WindowManager.LayoutParams.WRAP_CONTENT);

// Cancel the dialog if you touch the background
termsDialog.setCanceledOnTouchOutside(true);

// Add the terms string to the dialog
TextView termsText = termsDialog.findViewById(R.id.termsTextView);
String terms = getResources().getString(R.string.terms);
termsText.setText(terms);

// Show the dialog
termsDialog.show();
}

这是 terms_dialog.xml 文件:

<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">

<ScrollView
android:id="@+id/scrollView"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@android:color/white"
android:padding="8dp"
android:scrollbarSize="0dp">

<TextView
android:id="@+id/termsTextView"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
</ScrollView>

</android.support.constraint.ConstraintLayout>

this 是我得到的结果(敏感信息被白化)。

最佳答案

正如@HB 链接所指出的那样。给我,你的 APK 文件中不能有大于 32,767 字节(以 UTF-8 编码)的字符串。

所以,我所做的是在名为 terms.txt 的 Assets 文件夹中创建一个 txt 文件,并将字符串放入其中。然后,使用以下函数将文件转换为字符串:

private String getTermsString() {
StringBuilder termsString = new StringBuilder();
BufferedReader reader;
try {
reader = new BufferedReader(
new InputStreamReader(getAssets().open("terms.txt")));

String str;
while ((str = reader.readLine()) != null) {
termsString.append(str);
}

reader.close();
return termsString.toString();
} catch (IOException e) {
e.printStackTrace();
}
return null;
}

我只是将它分配给 TextView

关于java - TextView 显示 STRING_TOO_LARGE,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51732252/

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