最終年度プロジェクトの Android アプリケーションを開発しています。いくつかのオンライン チュートリアルと例を参考にして、いくつかのユーザー情報と詳細をデータベースに保存することに成功しました。ただし、ユーザーといくつかのユーザー入力情報をメイン ページに表示するには、ヘルプが必要です。フェイスブックのホームページに似ています。方向性の手がかりや、オンラインの記事やチュートリアルを教えてもらえますか? どうぞよろしくお願いいたします。
これは、ユーザー情報とユーザーの入力を保存する私の php ファイルの一部です。それらすべてを1つのページに表示したかったのです。xml ファイルとメイン アクティビティ クラス ファイルは何をコーディングすればよいですか?
else if ($tag == 'report') {
//Request type is report location report
$name = $_POST['name'];
$address = $_POST['address'];
$traffic = $_POST['traffic'];
$whathappen = $_POST['whathappen'];
$comment = $_POST['comment'];
//store information
$report = $db->storeReport($address, $traffic, $whathappen, $comment);
if($report) {
//report stored successfully
//$response["success"] = 1;
$responce["report"]["name"] = $report["name"];
$responce["report"]["address"] = $report["address"];
$responce["report"]["traffic"] = $report["traffic"];
$responce["report"]["whathappen"] = $report["whathappen"];
$responce["report"]["comment"] = $report["comment"];
$responce["report"]["created_at"] = $report["created_at"];
$responce["report"]["updated_at"] = $report["updated_at"];
echo json_encode($responce);
}