一 项目介绍
汽车APP项目 包含了 APP客户端和后台管理系统,后台管理系统主要维护汽车的数据,比如汽车发布,汽车图集多图上传,汽车销售商,汽车类型,客户管理,系统管理等,APP客户端包含 用户注册,登录,个人中心,汽车首页,推荐汽车,品牌搜索,多条件搜索,汽车列表,汽车详情,汽车图片预览 汽车销售商和汽车类型等等
二 项目开发工具
android studio
逍遥模拟器或者夜神模拟器
mysql
idea或者eclipse
vscode
三 项目功能结构图
四 项目功能开发和设计
首页:有三块区域 1顶部图片,2品牌搜索区 3汽车推荐列表区
布局文件:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout 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"
style="@style/Theme.AppCompat.NoActionBar"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
>
<!-- 区域一-->
<LinearLayout
android:layout_width="match_parent"
android:layout_height="180dp"
android:orientation="vertical"
tools:ignore="MissingConstraints"
android:background="@mipmap/lb2">
</LinearLayout>
<!-- 区域二 -->
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="50dp"
android:layout_marginLeft="20dp"
android:layout_marginRight="20dp"
android:orientation="horizontal"
>
<TextView
android:layout_width="wrap_content"
android:layout_height="50dp"
android:paddingTop="20dp"
android:text="品牌搜索"
android:textSize="18dp"
android:layout_weight="1">
</TextView></