其他分享
首页 > 其他分享> > 智障家居之智障烧水装备----安卓App端的配置和设计

智障家居之智障烧水装备----安卓App端的配置和设计

作者:互联网

智障家居之智障烧水装备----安卓App端的配置和设计

FoldableLayout

配置

    implementation 'com.alexvasilkov:foldable-layout:1.2.1'
    implementation 'com.alexvasilkov:android-commons:2.0.2'
    implementation 'com.github.bumptech.glide:glide:3.7.0'

自此,FoldableLayout已经可以开始使用

OKHttp3

配置

    implementation 'com.squareup.okhttp3:okhttp:3.7.0'
    implementation 'com.squareup.okio:okio:1.13.0'
<?xml version="1.0" encoding="utf-8"?>
<network-security-config>
    <base-config cleartextTrafficPermitted="true" />
</network-security-config>

最后,在AndroidManifest.xml文件中添加两项配置
在这里插入图片描述

<uses-permission android:name="android.permission.INTERNET"/>
android:networkSecurityConfig="@xml/network_security_config"

具体设计

因为智障家居有很多系列,因此,考虑如下设计模式。

UnityApp

App为集合App,因此,它会将所有的智障家居模块进行集成。常见的集成App都会使用ListView来进行多个模块的展示,配合上FoldableLayout,可展现出还不错的效果。经上考虑,UnityApp大概如下所示:
在这里插入图片描述

详细操作界面

由于我打算采用模块化来设计整个UnityApp,因此,每一个智障家居都会单独维护一个详细操作界面,即Layout。基于此,可以单独开发出一个能够完善运行的模块程序后,再直接合并到UnityApp中即可。

标签:xml,----,implementation,App,UnityApp,智障,com
来源: https://blog.csdn.net/ZeroSwift/article/details/114642979