Giter Site home page Giter Site logo

Comments (14)

ericntd avatar ericntd commented on August 25, 2024

Same here:
screen shot 2016-09-18 at 1 00 36 am

from html-textview.

codesForLiving avatar codesForLiving commented on August 25, 2024

Same issue. Any update?

from html-textview.

dschuermann avatar dschuermann commented on August 25, 2024

I am open for pull requests 😬

from html-textview.

maxim-yudin avatar maxim-yudin commented on August 25, 2024

Yeah, same bug

from html-textview.

bhavna-nga avatar bhavna-nga commented on August 25, 2024

Same Issue with me as well. Do we have any work around?

from html-textview.

programmermager avatar programmermager commented on August 25, 2024

yeah, same issue here.

from html-textview.

geet000 avatar geet000 commented on August 25, 2024

same issue

from html-textview.

dschuermann avatar dschuermann commented on August 25, 2024

Please try 3.6 and report back.

from html-textview.

Vivecstel avatar Vivecstel commented on August 25, 2024

yes it still replicates at 3.6

from html-textview.

farimarwat avatar farimarwat commented on August 25, 2024

same for 3.6

from html-textview.

lewiemortier avatar lewiemortier commented on August 25, 2024

Same happening here on 3.6. Any update on this?

from html-textview.

Kisty avatar Kisty commented on August 25, 2024

Still happening on 3.8. Perhaps we could put an explicit space character in the lists? Affects API 23 Sony Xperia Z3 compact tablet.

from html-textview.

Kisty avatar Kisty commented on August 25, 2024

Also, how about inserting <pre> tags and put spacing inside there? Will try it out first.

from html-textview.

Kisty avatar Kisty commented on August 25, 2024

OK, I've found a workaround for unordered lists/bullet points. For Marshmallow, insert a βˆ™ followed by a space. There's a tiny visual artifact on the Sony tablet (both bullet points slightly overlapped making point wider) but on emulator it doesn't show.

String bulletPointFixCharacter;
if (Build.VERSION.SDK_INT == Build.VERSION_CODES.M) {
  //Fix for Marshmallow
  bulletPointFixCharacter = "βˆ™ ";
} else {
  bulletPointFixCharacter = "";
}
String html = 
  "<p>\n" +
  "  <ol>\n" +
  "    <li>Item 1</li>\n" +
  "    <li>Item 2</li>\n" +
  "    <li>Item 3" +
  "      <ul>\n" +
  "        <li>" + bulletPointFixCharacter +  "I'm a nested list item</li>\n" +
  "      </ul>\n" +
  "    </li>\n" +
  "  </ol>\n" +
  "</p>";

Marshmallow API 23 (Sony tablet)
Screenshot_20191216-123801

6.0 Marshmallow API 23 (emulator)
Screenshot_1576500004

9.0 Pie API 28 (emulator)
Screenshot_1576500000

from html-textview.

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.