0

現在、ユーザーが登録してログインできるAndroidアプリを作成できました。登録されたデータはデータベースに保存され、ログインデータはデータベースから取得されます。

データベースに保存されるクラスのリスト (クラス テーブル) からユーザーが予約できるようにしたいと考えています。クラスの詳細をユーザーに表示して、ユーザーが予約したいクラスを (おそらくチェックボックスで) 選択できるようにする必要があります。

これを行った後、ユーザーは予約を表示する画面 (userbooking テーブル - 参加テーブル) にアクセスできるようになり、予約を「キャンセル」することもできます。これにより、このテーブルが更新され、選択した予約が削除されます。テーブルから。

私を支援するウェブサイト/YouTubeのチュートリアル、またはこのような個人的な知識を知っている人はいますか?

4

1 に答える 1

0

I guess you would need a couple api calls. One would authenticate your user and return a list of classes and details, so android can display them. Another method would allow an authenticated user to create a booking from selected classes. And a third would allow the user to modify or delete their bookings.

This is a textbook example of a CRUD api. http://en.wikipedia.org/wiki/Create,_read,_update_and_delete, you will need some sort of authentication system for your users too.

http://www.myintervals.com/blog/2009/06/19/api-authentication-methodologies/

于 2012-04-12T13:28:22.137 に答える