Home  >  Article  >  Android backend Bmob backend cloud

Android backend Bmob backend cloud

little bottle
little bottleforward
2019-04-09 15:25:272314browse

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 account
  1. Enter
  2. Bmob management background to create an application, get the appkey
  3. app and integrate Bmob’s sdk. By calling Bmob’s api (the integration is simple, just follow the steps, the call is not difficult, and there are many functions.
  4. Please check the help document for more functionshttp://doc.bmob .cn/data/android/develop_doc/)

It has many advantages:

  • The API is very clearly written, and the explanations of each method are in place.
  • #The database is very convenient and can be used by novices, which greatly reduces the learning cost.
  • The functions are very powerful, including push, payment, version management, and user system
  • ## Version updates are iterative quickly and optimized very well.
  • Here are some screenshots used

# #

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;
    }
}




#[Recommended course:

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!

Statement:
This article is reproduced at:csdn.net. If there is any infringement, please contact admin@php.cn delete