Try this
$("#page").trigger("pagecreate");
It will apply enhancements for all added content within the page.
You will still need to refresh lists using $('ul').listview('refresh').
Ex.
$(document).delegate('#mypage', "pageshow", function() {
var page = $(this);
// load data
page.trigger('pagecreate');
$("ul").listview('refresh');
});