0

我正在为我的最后一年项目开发 android 应用程序。参考了一些在线教程和示例,我成功地将一些用户信息和详细信息存储到了数据库中。但是我需要帮助来向主页显示用户和一些用户输入信息。类似于脸书主页。有人可以给我一个方向线索或任何在线文章或教程吗?请感谢您的帮助,谢谢。

这是我存储用户信息和用户输入的 php 文件的一部分。我想在一个页面中显示所有这些。我应该对我的 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);
        }
4

1 回答 1

0

有很多选项可以满足您的要求。您可以创建一个活动,其中包含一组EditText用于用户输入的框和一组TextViews用于显示信息的框。

似乎你需要一个很好的 Android 开发初学者课程来掌握活动、布局、按钮、监听器等。我在这里推荐优秀的官方谷歌开发者指南:

http://developer.android.com/training/index.html

如果您知道这些,那么您可以阅读数据库。这是一个很好的教程:

http://www.androidhive.info/2011/11/android-sqlite-database-tutorial/

从数据库中获取数据后,您可以将这些值分配给TextViews usingTextView.setText()方法。

于 2012-11-18T14:01:56.823 回答