《小曼的账本》开发记录 【1.新建项目,搭建基础UI】

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工程的……


图片发自简书App

额,没错自从更新了Android Studio 3.0以来,我就走上了一个修Gradle的不归路……

2018年4月13日

没错新建项目【新建项目我就不说了,选择带底栏的那个模板】的时候还是卡在Build Gradle 那里。


这次我们就来终极的做法:断网!!!
新建工程后,出现上图之后,断网!断网!断网!断网之后重新打开该项目,去设置里找到Gradle这一栏

设置使用本地的Gradle,这个本地的Gradle一般在你新建过一个成功的项目之后就会有,第一次使用studio一般不会出现Gradle问题的,所以一般电脑里会有一个完整的Gradle版本,选择路径(没有的话也可以去Gradle官网下载),记住,不要选择离线工作。(图里我忘了取消√了)

配置完成保存,等着刷新完成。
运行一下

图片发自简书App

可以看到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 。

效果如下


图片发自简书App

图片发自简书App

好了到这里我们的基础UI已经搭建完毕,接下来我们进行列表的搭建。

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 213,099评论 6 492
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 90,828评论 3 387
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 158,540评论 0 348
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 56,848评论 1 285
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 65,971评论 6 385
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,132评论 1 291
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,193评论 3 412
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,934评论 0 268
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,376评论 1 303
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,687评论 2 327
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,846评论 1 341
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,537评论 4 335
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,175评论 3 317
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,887评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,134评论 1 267
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,674评论 2 362
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,741评论 2 351

推荐阅读更多精彩内容