Without the background, can Android only write its own functions to play with local functions? The answer is definitely no. One of the representatives of is Bmob. Of course, BAT and Amazon all have such products. Here we will introduce one of them, Bmob.
Then let’s briefly talk about the usage process of Bmob:
Go to Bmob official website https:/ /www.bmob.cn/Register a new accountIt has many advantages:
# #
package com.example.kuby.myapplication.bean;import cn.bmob.v3.BmobObject; /** * Created by Kuby on 2018/3/19. */ public class PersonBean extends BmobObject {//关键要继承BmobObject private int id; private String name; private String address; public int getId() { return id; } public void setId(int id) { this.id = id; } public String getName() { return name; } public void setName(String name) { this.name = name; } public String getAddress() { return address; } public void setAddress(String address) { this.address = address; } }
Android video tutorial]
The above is the detailed content of Android backend Bmob backend cloud. For more information, please follow other related articles on the PHP Chinese website!