2018年4月13日 22点23分 项目启动
额,先来回答一下为什么要做一个这个东西,主要是因为我家小可爱在做一个查优惠的工作,但是小可爱比较认真啊,每天都要自己整理Excel表格,而且这种即时的工作不适合用电脑,每天盯着手机版的WPS看,没几天就 老眼昏花了……还是给她做一个APP吧,嗯,小可爱叫小曼。 【佛系考研的我……竟然又开了一个新项目】
一. 准备
A :需求分析如下:
1.统计每天下的单的基本情况(要通过一段文本快捷导入,而不是一个字段一个字段的填),能够筛选,搜索等
2.退款订单的标识,能够快速查询定位
3.统计月账单,周账单,能够清晰的看到这个月媳妇能给我挣多少买糖糖的钱
B :UI构想:
由于时间紧迫,不能细致入微的设计原型,直接采用我喜欢的Material Design 风格,加上 Android Studio 模板。分为三个模块,分别对应上面三个需求。
C :版本发展:
第一版本采用本地数据库储存,后续有时间的话可能会添加云端存储。
D : 初步打算使用的库
LitePal:起初打算试试GreenDao,奈何下载不下来插件,然后还是接着用郭神的框架吧,
Recycleview: 还是BRVAH这款强大的控件(之所以采用框架是因为可以更快的实现复杂效果)
ButterKnife:黄油刀宝宝,实在是懒得写FindviewByID
Eventbus:事件总线大佬,可以省很多事
二.开始
废话不多说,开始我的表演。
1. 开发环境
IDE :As3.0
DEVICES: Mi-Mix2s Android 8.0
开发日记
其实我是很不愿意新建Android Studio工程的……
额,没错自从更新了Android Studio 3.0以来,我就走上了一个修Gradle的不归路……
2018年4月13日
没错新建项目【新建项目我就不说了,选择带底栏的那个模板】的时候还是卡在Build Gradle 那里。
这次我们就来终极的做法:断网!!!
新建工程后,出现上图之后,断网!断网!断网!断网之后重新打开该项目,去设置里找到Gradle这一栏
设置使用本地的Gradle,这个本地的Gradle一般在你新建过一个成功的项目之后就会有,第一次使用studio一般不会出现Gradle问题的,所以一般电脑里会有一个完整的Gradle版本,选择路径(没有的话也可以去Gradle官网下载),记住,不要选择离线工作。(图里我忘了取消√了)
配置完成保存,等着刷新完成。
运行一下
可以看到UI的基础架构模板已经替我们完成了,给媳妇选了一个骚粉色……
2018年4月13日 22点55分
我们来分析一下源代码
首先看布局activity_main.xml
<?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:id="@+id/container"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="cn.surine.sm.MainActivity">
<TextView
android:id="@+id/message"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginStart="@dimen/activity_horizontal_margin"
android:layout_marginLeft="@dimen/activity_horizontal_margin"
android:layout_marginTop="@dimen/activity_vertical_margin"
android:text="@string/title_home"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintTop_toTopOf="parent" />
<android.support.design.widget.BottomNavigationView
android:id="@+id/navigation"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginEnd="0dp"
android:layout_marginStart="0dp"
android:background="?android:attr/windowBackground"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:menu="@menu/navigation" />
</android.support.constraint.ConstraintLayout>
ConstraintLayout布局和BottomNavigationView都是Support库里的东西,用来设计MD应用很方便,ConstraintLayout不说了,BottomNavigationView顾名思义是一个底部导航栏的控件,核心代码是app:menu="@menu/navigation",设置底部显示的内容,那么我们来看一下menu目录下的navigation文件
<?xml version="1.0" encoding="utf-8"?>
<menu xmlns:android="http://schemas.android.com/apk/res/android">
<item
android:id="@+id/navigation_home"
android:icon="@drawable/ic_home_black_24dp"
android:title="@string/title_home"/>
<item
android:id="@+id/navigation_dashboard"
android:icon="@drawable/ic_dashboard_black_24dp"
android:title="@string/title_dashboard"/>
<item
android:id="@+id/navigation_notifications"
android:icon="@drawable/ic_notifications_black_24dp"
android:title="@string/title_notifications"/>
</menu>
嗯,menu文件的话,是“我们都一样”,不管是Toolbar上的,还是Navigation的……没什么可说的,字符常量也没啥说的,都在string.xml里
那么重点在Java 文件 ,看一下MainActivity.java
public class MainActivity extends AppCompatActivity {
private TextView mTextMessage;
private BottomNavigationView.OnNavigationItemSelectedListener mOnNavigationItemSelectedListener
= new BottomNavigationView.OnNavigationItemSelectedListener() {
@Override
public boolean onNavigationItemSelected(@NonNull MenuItem item) {
//监听
switch (item.getItemId()) {
case R.id.navigation_home:
mTextMessage.setText(R.string.title_home);
return true;
case R.id.navigation_dashboard:
mTextMessage.setText(R.string.title_dashboard);
return true;
case R.id.navigation_notifications:
mTextMessage.setText(R.string.title_notifications);
return true;
}
return false;
}
};
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
//获取textview
mTextMessage = (TextView) findViewById(R.id.message);
//获取 BottomNavigationView
BottomNavigationView navigation = (BottomNavigationView) findViewById(R.id.navigation);
//设置监听器
navigation.setOnNavigationItemSelectedListener(mOnNavigationItemSelectedListener);
}
}
其实就是配置了一个监听器,通过监听器来监听点了哪个选项,然后设置相应的文字。
2018年4月13日 23点06分
那么接下来,我们将中间部分替换为Fragment,为接下来的开发做准备。
修改activity.xml文件
注意:省略已经贴过的部分代码
<?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:id="@+id/container"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="cn.surine.sm.MainActivity">
<FrameLayout
android:id="@+id/fragment"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginBottom="@dimen/bottonNavigationDimin"
/>
<android.support.design.widget.BottomNavigationView
android:id="@+id/navigation"
android:layout_width="0dp"
android:layout_height="@dimen/bottonNavigationDimin"
android:background="?android:attr/windowBackground"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:menu="@menu/navigation" />
</android.support.constraint.ConstraintLayout>
这里修改了一下BottomNavigationView的高度@dimen/bottonNavigationDimin,值是56dp,同时FrameLayout距离底部56dp
接下来新建3个Fragment,先啥都不写
媳妇叫我去睡了。晚安伙计们。
2018年4月14日 17点34分
刚刚看完一波高数,现在又准备开始鼓捣代码啦。
立个flag,先搞上40分钟,然后去背单词。
昨晚写到建立三个Fragment,在这里先插一段ButterKnife的代码。
build.gradle里添加黄油刀依赖,同时没有插件的宝宝可以自行安装插件,(当然你也可以不用插件,手敲代码)这里不多说。
dependencies {
implementation 'com.jakewharton:butterknife:8.5.1'
annotationProcessor 'com.jakewharton:butterknife-compiler:8.5.1'
}
那修改一下MainActivity.java里的代码
public class MainActivity extends AppCompatActivity {
@BindView(R.id.fragment)
FrameLayout fragment;
@BindView(R.id.navigation)
BottomNavigationView navigation;
...//省略部分代码...
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
ButterKnife.bind(this);
navigation.setOnNavigationItemSelectedListener(mOnNavigationItemSelectedListener);
}
}
接下来我们添加主页面的fragment
修改MainActivity.java实现更新fragment的方法
这里直接放出最终的MainAvtivity.java代码
package cn.surine.sm;
import android.app.Fragment;
import android.app.FragmentManager;
import android.app.FragmentTransaction;
import android.os.Bundle;
import android.support.annotation.NonNull;
import android.support.design.widget.BottomNavigationView;
import android.support.v7.app.AppCompatActivity;
import android.view.MenuItem;
import android.widget.FrameLayout;
import butterknife.BindView;
import butterknife.ButterKnife;
import butterknife.OnClick;
import cn.surine.sm.Fragment.FirstFragment;
import cn.surine.sm.Fragment.SecondFragment;
import cn.surine.sm.Fragment.ThirdFragment;
public class MainActivity extends AppCompatActivity {
@BindView(R.id.fragment)
FrameLayout fragment;
@BindView(R.id.navigation)
BottomNavigationView navigation;
//创建三个碎片实例
Fragment f1 = new FirstFragment();
Fragment f2 = new SecondFragment();
Fragment f3 = new ThirdFragment();
private BottomNavigationView.OnNavigationItemSelectedListener mOnNavigationItemSelectedListener
= new BottomNavigationView.OnNavigationItemSelectedListener() {
@Override
public boolean onNavigationItemSelected(@NonNull MenuItem item) {
switch (item.getItemId()) {
case R.id.navigation_home:
//调用替换方法,填入f1碎片
updateFragment(f1);
return true;
case R.id.navigation_dashboard:
//调用替换方法,填入f2碎片
updateFragment(f2);
return true;
case R.id.navigation_notifications:
//调用替换方法,填入f3碎片
updateFragment(f3);
return true;
}
return false;
}
};
//碎片更新方法(四个步骤,注意使用replace方法,才不会产生覆盖)
public void updateFragment(Fragment f){
//Fragment是通过getFragmentManager获得的。
FragmentManager fragmentManager = getFragmentManager();
//2.开启一个事务,通过调用beginTransaction方法开启。
FragmentTransaction fragmentTransaction = fragmentManager.beginTransaction();
//3.向容器内加入Fragment,一般使用add或者replace方法实现,需要传入容器的id和Fragment的实例。
fragmentTransaction.replace(R.id.fragment,f);
//4.提交事务,调用commit方法提交。
fragmentTransaction.commit();
}
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
ButterKnife.bind(this);
//初始加载首页碎片
updateFragment(f1);
navigation.setOnNavigationItemSelectedListener(mOnNavigationItemSelectedListener);
}
}
到这里MainActivity.java的使命就完成了,如果此时看效果的话,是什么都看不到的,所以我们还要为每个Fragment创建一个界面。
我们来看其中一个吧
FirstFragment .java
主要是新增了一个onCreateView方法来创建视图,通过反射布局来加载。
package cn.surine.sm.Fragment;
import android.app.Fragment;
import android.os.Bundle;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import cn.surine.sm.R;
/**
* Created by Surine on 2018/4/13.
*/
public class FirstFragment extends Fragment {
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
//引用创建好的xml布局
View view = inflater.inflate(R.layout.fragment_first,container,false);
return view;
}
}
布局文件fragment_first.xml如下:
<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent">
<Button
android:id="@+id/button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="1"
tools:layout_editor_absoluteX="72dp"
tools:layout_editor_absoluteY="35dp"
tools:ignore="MissingConstraints" />
</android.support.constraint.ConstraintLayout>
这里界面中放了一个button,写了个1,相似的,其他fragment的java和xml文件分别替换为fragment_second和fragment_third 。
效果如下
好了到这里我们的基础UI已经搭建完毕,接下来我们进行列表的搭建。