hello, I need to know how to change the item focus color in my watch app. I used ui-listview
class and the current focus color seems opacity with black and it’s the default color. I need to remove it like transparent or something. actually, I don’t need focus color. can we achieve it?
<ul class="ui-listview">
<li>
<div>
<img src="/assets/images/icon_balance.png"/>
<h5>Line 1</h5>
</div>
</li>
<li>
<div>
<img src="/assets/images/icon_app.png"/>
<h5>Line 2</h5>
</div>
</li>
</ul>
Thanks.