Select/click an item from webview

Hi,

I am trying to select an item from page source. I am trying to use linktext and it fails. Below is the page source attached.
Please help.
I am trying to select “Camera”

loading

                    <div data-role="header" data-position="fixed" id="header" data-tap-toggle="false" role="banner" class="ui-header ui-bar-inherit ui-header-fixed slidedown">
                        <h6 id="headertitle" class="headerText ui-title" role="heading" aria-level="1">Settings</h6>
                        <a id="backbutton" class="ui-btn-left ui-btn ui-icon-arrow-l ui-btn-icon-notext" data-rel="back" data-role="button" role="button"></a>
                    </div>
                    
                    <div data-role="main" class="ui-content">
                        
                        <div class="panel">
                            
                            <div class="cd-panel-container">
                                
                                <ul data-role="listview" class="settings ui-listview">  
                                    <li class="ui-li-static ui-body-inherit ui-first-child">Camera</li>
                                    <li class="ui-li-static ui-body-inherit">Image Processor</li>
                                    <li class="ui-li-static ui-body-inherit ui-last-child">Extraction</li>                  
                                </ul>			  
                                
                            </div> <!-- cd-panel-container -->
                        </div> <!-- cd-panel -->
                        
                    </div>
                </main>
                
            </div></body></html>

If u use this xpath does it work

driver.findElement(By.xpath("//ul[@class=‘settings ui-listview’]/li[1])).click();

Yes Amit, It Worked. Thank you very much.

I used the below code

driver.findElement(By.xpath("//*[@id=‘Settings’]/main/div[2]/div/div/ul/li[1]")).click();