Titanium Mobileの標準APIであるhttpCLientを通じてQiitaの投稿情報を取得した後に、TableViewを使って画面に表示する機能を最初から作るとなると、理解が進まない可能性があるかと思います。
そこで、まずはあらかじめ準備してあるサンプルデータでのTableViewの使い方について説明します
これから実装する処理イメージとしては以下のようになります
サンプルデータは以下に準備してあります。
https://raw.githubusercontent.com/h5y1m141/tistudy/master/TitaniumClassic/tableview/sample.txt
以下要領で作業をします
var sample, file, body, mainTable, win, i ,len ,row ,rows,textLabel;
// ダウンロードしたJSONファイルを読み込む処理
sample = Ti.Filesystem.getFile(Ti.Filesystem.resourcesDirectory, "sample.json");
file = sample.read().toString();
body = JSON.parse(file);
mainTable = Ti.UI.createTableView({
width: Ti.UI.FULL,
height:Ti.UI.FULL,
backgroundColor:"#fff",
left: 0,
top: 0
});
win = Ti.UI.createWindow({
title:'QiitaViewer'
});
rows = [];
for (i = 0, len = body.length; i < len; i++) { // (1)
row = Ti.UI.createTableViewRow({ // (2)
width: 'auto',
height:40,
borderWidth: 0,
className:'entry',
color:"#222"
});
textLabel = Ti.UI.createLabel({ // (3)
width:'auto',
height:30,
top:5,
left:5,
color:'#222',
font:{
fontSize:16,
fontWeight:'bold'
},
text:body[i].title
});
row.add(textLabel); // (4)
rows.push(row); // (5)
}
mainTable.setData(rows); // (6)
win.add(mainTable);
win.open();