gpt4 book ai didi

java - 如何设置 textview 中的所有行具有相同的字符长度?

转载 作者:行者123 更新时间:2023-12-01 04:57:15 26 4
gpt4 key购买 nike

如何设置 TextView 中的所有行具有相同的字符长度?

这是sqlite数据库中的文本

enter image description here

这是android中的textview

enter image description here

我在main.class中的查询代码

db.open(); 光标c = db.getdescIntro(部门,学位);

    if (c.moveToFirst())
{

do {
a = (String)c.getString(0);
txt.setText(a);

PDF = c.getString(2);
} while (c.moveToNext());
}
db.close();

我的数据库.class

public Cursor getdescIntro(String dep,String Degree) {

return db.query("学术", new String[] {"desc","部门","acapdf"},"部门"+ "=?"+"AND "+ "学位"+"=? ", new String[] {dep, Degree}, null, null, null);

}

最佳答案

如果我根据您的屏幕截图正确理解您的问题,那么您是在问如何删除换行符:

String myNewString = myString.replaceAll("\n", "");

如果您正在寻找一种使文本完全符合 TextView's 边界的解决方案,请参阅此答案:auto-scale-textview-text-to-fit-within-bounds

关于java - 如何设置 textview 中的所有行具有相同的字符长度?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13899430/

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