其他分享
首页 > 其他分享> > 软件工程课设III——DAY 1

软件工程课设III——DAY 1

作者:互联网

课设目标

完成一个有前端,后台和手机端的学生管理系统。

解决问题

1.github无法访问

具体方法:github无法访问的原因在于该网站修改了IP地址。在hosts文件中备案新网址即可恢复访问。

tips:hosts文件无法直接执行编辑操作。需要先建一个host文件然后再将其拷贝到本来的位置。(这还是我们的张老师教的233)

2.cardview无法正常使用

具体方法:统一使用androidx。

引入的依赖我在这里给大家贴出来:

 implementation 'androidx.appcompat:appcompat:1.0.0'
    implementation 'androidx.cardview:cardview:1.0.0'
    implementation 'androidx.recyclerview:recyclerview:1.0.0'

3.android:foreground属性

具体应用场景:

<androidx.cardview.widget.CardView
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="45dp"
    android:layout_height="70dp"
    android:foreground="?android:attr/selectableItemBackground"
    app:cardBackgroundColor="#CDA9D3"
    app:cardCornerRadius="7dp">

解释: foreground就是前景色的意思。它与background最大的区别在于可以起到遮罩层的效果。

参考文章

android课程表(仿超表)

基于这篇文章还需要作出的改进主要是使用fragments嵌套减少activiity的使用,还有使用后台数据库而非本地数据库。

知识储备工作

眼下当务之急是尽快完成后台的搭建部署。需要的技术栈:

环境——JDK8+IDEA+MAVEN3.X

部署——阿里云centos7

核心技术——SSM+JWT

后端学习方案

视频+博客

知识分享

maven

首先从官网下载maven

配置maven并检测配置成功

创建settings目录

然后自然是创建项目

 

标签:1.0,课设,androidx,implementation,无法访问,cardview,maven,III,DAY
来源: https://blog.csdn.net/jinyu_mobao/article/details/117411117