あなたがそうのような.ui-li-count
要素のCSSを変更することができます:ここでは
/*target the count bubbles and left align them, by default they are right aligned*/
.ui-page .ui-content .ui-listview .ui-li-count {
left : 10px;
right : auto;
}
/*target the link in which the count bubbles reside and add some padding so the bubbles and link text don't overlap*/
/*notice this is only applied to list-items that actually have count bubbles*/
.ui-page .ui-content .ui-listview .ui-li-has-count .ui-btn-text a {
padding-left : 55px;
}
はデモです:http://jsfiddle.net/vAjDn/1/(カウントバブルなしリスト項目に注目してくださいインデントされません)
<li data-theme="c" class="ui-btn ui-btn-icon-right ui-li-has-arrow ui-li ui-li-has-count ui-btn-up-c">
<div class="ui-btn-inner ui-li">
<div class="ui-btn-text">
<a href="index.html" class="ui-link-inherit">
Inbox
<span class="ui-li-count ui-btn-up-c ui-btn-corner-all">12</span>
</a>
</div>
<span class="ui-icon ui-icon-arrow-r ui-icon-shadow"></span>
</div>
</li>
:ここ
は、HTMLの簡単なデモがlistview
ウィジェット内のリスト・アイテムに適用されます