IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> 移动开发 -> Android云平台 -> 正文阅读

[移动开发]Android云平台

界面

<?xml version="1.0" encoding="utf-8"?>

<android.support.constraint.ConstraintLayout xmlns:android=“http://schemas.android.com/apk/res/android”
xmlns:app=“http://schemas.android.com/apk/res-auto”
xmlns:tools=“http://schemas.android.com/tools”
android:layout_width=“match_parent”
android:layout_height=“match_parent”
tools:context=".MainActivity">

<TextView
    android:id="@+id/m_chuan"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_marginStart="10dp"
    android:layout_marginLeft="10dp"
    android:layout_marginTop="10dp"
    android:text="m_光照传感器"
    android:textColor="#2c2c2c"
    android:textSize="30dp"
    app:layout_constraintStart_toStartOf="parent"
    app:layout_constraintTop_toTopOf="parent" />

<TextView
    android:id="@+id/z_zigbee"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_marginTop="10dp"
    android:text="z_温度传感器"
    android:textColor="#2c2c2c"
    android:textSize="30dp"
    app:layout_constraintStart_toStartOf="@+id/m_chuan"
    app:layout_constraintTop_toBottomOf="@+id/m_chuan" />

<TextView
    android:id="@+id/m_kong"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_marginTop="10dp"
    android:text="m_报警灯"
    android:textColor="#2c2c2c"
    android:textSize="30dp"
    app:layout_constraintStart_toStartOf="@+id/z_zigbee"
    app:layout_constraintTop_toBottomOf="@+id/z_zigbee" />

<TextView
    android:id="@+id/m_zhi"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_marginStart="8dp"
    android:layout_marginLeft="8dp"
    android:layout_marginEnd="8dp"
    android:layout_marginRight="8dp"
    android:textColor="#2c2c2c"
    android:textSize="30dp"
    app:layout_constraintBottom_toBottomOf="@+id/m_chuan"
    app:layout_constraintEnd_toEndOf="parent"
    app:layout_constraintStart_toEndOf="@+id/m_chuan"
    app:layout_constraintTop_toTopOf="@+id/m_chuan" />

<TextView
    android:id="@+id/z_zhi"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_marginStart="8dp"
    android:layout_marginLeft="8dp"
    android:layout_marginEnd="8dp"
    android:layout_marginRight="8dp"
    android:textColor="#2c2c2c"
    android:textSize="30dp"
    app:layout_constraintBottom_toBottomOf="@+id/z_zigbee"
    app:layout_constraintEnd_toEndOf="parent"
    app:layout_constraintStart_toEndOf="@+id/z_zigbee"
    app:layout_constraintTop_toTopOf="@+id/z_zigbee" />

<Button
    android:id="@+id/m_on"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_marginStart="20dp"
    android:layout_marginLeft="20dp"
    android:onClick="m_click"
    android:textColor="#2c2c2c"
    android:textSize="30dp"
    android:text="打开"
    app:layout_constraintBottom_toBottomOf="@+id/m_kong"
    app:layout_constraintStart_toEndOf="@+id/m_kong"
    app:layout_constraintTop_toTopOf="@+id/m_kong" />

<Button
    android:id="@+id/m_off"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_marginStart="20dp"
    android:layout_marginLeft="20dp"
    android:onClick="m_click"
    android:textColor="#2c2c2c"
    android:textSize="30dp"
    android:text="关闭"
    app:layout_constraintBottom_toBottomOf="@+id/m_on"
    app:layout_constraintStart_toEndOf="@+id/m_on"
    app:layout_constraintTop_toTopOf="@+id/m_on" />

</android.support.constraint.ConstraintLayout>

代码
package com.example.newland.yun;

import android.os.Handler;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;
import android.widget.TextView;
import android.widget.Toast;

import cn.com.newland.nle_sdk.requestEntity.SignIn;
import cn.com.newland.nle_sdk.responseEntity.SensorInfo;
import cn.com.newland.nle_sdk.responseEntity.User;
import cn.com.newland.nle_sdk.responseEntity.base.BaseResponseEntity;
import cn.com.newland.nle_sdk.util.NCallBack;
import cn.com.newland.nle_sdk.util.NetWorkBusiness;

public class MainActivity extends AppCompatActivity {
private TextView m_zhi,z_zhi;
private String token;
private String wz=“http://www.nlecloud.com/”;
private String SBBS=“321264”;
private Handler handler=new Handler();

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
    init();
    Sign();
    handler.postDelayed(runnable,2000);
}

private void Sign() {
    NetWorkBusiness netWorkBusiness=new NetWorkBusiness("",wz);
    netWorkBusiness.signIn(new SignIn("18079164182", "20040907ljl"), new NCallBack<BaseResponseEntity<User>>(getApplicationContext()) {
        @Override
        protected void onResponse(BaseResponseEntity<User> user) {
                token=user.getResultObj().getAccessToken();
        }
    });
}

private void init() {
    m_zhi=findViewById(R.id.m_zhi);
    z_zhi=findViewById(R.id.z_zhi);
}

public void m_click(View view) {
    Toast.makeText(this,"点击成功",Toast.LENGTH_SHORT).show();
    switch (view.getId()){
        case R.id.m_on:
            NetWorkBusiness netWorkBusiness=new NetWorkBusiness(token,wz);
            netWorkBusiness.control(SBBS, "bjd", 1, new NCallBack<BaseResponseEntity>(getApplicationContext()) {
                @Override
                protected void onResponse(BaseResponseEntity base1) {
                }
            });
            break;
        case R.id.m_off:
            NetWorkBusiness netWorkBusiness1=new NetWorkBusiness(token,wz);
            netWorkBusiness1.control(SBBS, "bjd", 0, new NCallBack<BaseResponseEntity>(getApplicationContext()) {
                @Override
                protected void onResponse(BaseResponseEntity base2) {
                }
            });
            break;
    }
}

private Runnable runnable=new Runnable() {
    @Override
    public void run() {
        getchuan();
        getzigbee();
        handler.postDelayed(runnable,2000);
    }
};

private void getchuan(){
    NetWorkBusiness netWorkBusiness=new NetWorkBusiness(token,wz);
    netWorkBusiness.getSensor(SBBS, "gz", new NCallBack<BaseResponseEntity<SensorInfo>>(getApplicationContext()) {
        @Override
        protected void onResponse(BaseResponseEntity<SensorInfo> sensor) {
            SensorInfo sensorInfo=sensor.getResultObj();
            m_zhi.setText(sensorInfo.getValue());
        }
    });
}
private void getzigbee(){
    NetWorkBusiness netWorkBusiness=new NetWorkBusiness(token,wz);
    netWorkBusiness.getSensor(SBBS, "z_wd", new NCallBack<BaseResponseEntity<SensorInfo>>(getApplicationContext()) {
        @Override
        protected void onResponse(BaseResponseEntity<SensorInfo> sensor) {
            SensorInfo sensorInfo=sensor.getResultObj();
            z_zhi.setText(sensorInfo.getValue());
        }
    });
}

}

  移动开发 最新文章
Vue3装载axios和element-ui
android adb cmd
【xcode】Xcode常用快捷键与技巧
Android开发中的线程池使用
Java 和 Android 的 Base64
Android 测试文字编码格式
微信小程序支付
安卓权限记录
知乎之自动养号
【Android Jetpack】DataStore
上一篇文章      下一篇文章      查看所有文章
加:2021-09-26 10:17:52  更:2021-09-26 10:19:07 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/23 20:46:35-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码