Giter VIP home page Giter VIP logo

Comments (3)

luotext avatar luotext commented on June 2, 2024

就是英文是按照单词来解释的,但是按照中文来计算,那么单词就被切割掉了,最后一行的单词就变得不完整了,并延申到第二行去了

所以我加了个判断
private oolean isTrue(String line) {
return !line.endsWith(" ") &&
!line.endsWith(",") &&
!line.endsWith(".") &&
!line.endsWith("-") &&
!line.equals(""");
}
其实也就是在当前要绘制的行末尾判断是否以上结尾,来达到判断是否单词被切割了,但是这样判断符号的情况,感觉并不友好。

from novelreader.

luotext avatar luotext commented on June 2, 2024

就是英文是按照单词来解释的,但是按照中文来计算,那么单词就被切割掉了,最后一行的单词就变得不完整了,并延申到第二行去了

所以我加了个判断
private oolean isTrue(String line) {
return !line.endsWith(" ") &&
!line.endsWith(",") &&
!line.endsWith(".") &&
!line.endsWith("-") &&
!line.equals(""");
}
其实也就是在当前要绘制的行末尾判断是否以上结尾,来达到判断是否单词被切割了,但是这样判断符号的情况,感觉并不友好。

如果是被切割了,直接按照最后一个空格来截取,结束这一行。str = str.substring(0, str.lastIndexOf(" ") + 1);

from novelreader.

lingyun14 avatar lingyun14 commented on June 2, 2024

//解决行末单词拆分的问题
if(paragraph.length() > wordCount && paragraph.substring(0, wordCount).contains(" ")){
char start = paragraph.charAt(wordCount);
char end = paragraph.charAt(wordCount - 1);
if(start != ' ' && end != ' '){//一个单词被断开的情况
int index = paragraph.lastIndexOf(' ', wordCount);
if(index > -1){
wordCount = index + 1;
}
}
}
subStr = paragraph.substring(0, wordCount);

我是在loadPages中将wordCount重新计算的

from novelreader.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.