My projec is a e-book reader application. There is only a VebView in screen and getting data from html file. It has only text content. I need to do get text in first line of current screen. In next step, I need to find the text in document and getting the text's position of screen. Finally, I need to scroll the found position. All of things necessary to solve that problem: (WebView Text Zoom Issue in Android)
html content:
<!DOCTYPE html>
    <head>
        <style type="text/css"> 
            p{} p.x1{} p.x2{} p.x3{} p.x4{} 
            h2.x1{} h2.x2{} h2.x3{} h2.x4{}
        </style>
    </head>
    <body>
        //paragraph-1
        <p class="x1">Title-1</p>
        <p class="x2">Title-2</p>
        <p class="x3">Title-3</p>
        <p class="x4">Title-4</p>
        <p>Text content.</p>
        //paragraph-2
        <h class="x1">Title-1</p>
        <h class="x2">Title-2</p>
        <p>Text content.</p>
        //paragraph-3
        <h class="x3">Title-1</p>
        <h class="x4">Title-2</p>
        <p class="x3">Title-3</p>
        <p>Text content.</p>
        //paragraph-4
        <h class="x2">Title-1</p>
        <p class="x3">Title-2</p>
        <p>Text content.</p>
        //...
    </body>
</html>
 
     
     
    