提交 db1bd0c9 编写于 作者: M mxdl

code perfect

上级 3c1aa702
<component name="ProjectCodeStyleConfiguration">
<code_scheme name="Project" version="173">
<Objective-C-extensions>
<file>
<option name="com.jetbrains.cidr.lang.util.OCDeclarationKind" value="Import" />
<option name="com.jetbrains.cidr.lang.util.OCDeclarationKind" value="Macro" />
<option name="com.jetbrains.cidr.lang.util.OCDeclarationKind" value="Typedef" />
<option name="com.jetbrains.cidr.lang.util.OCDeclarationKind" value="Enum" />
<option name="com.jetbrains.cidr.lang.util.OCDeclarationKind" value="Constant" />
<option name="com.jetbrains.cidr.lang.util.OCDeclarationKind" value="Global" />
<option name="com.jetbrains.cidr.lang.util.OCDeclarationKind" value="Struct" />
<option name="com.jetbrains.cidr.lang.util.OCDeclarationKind" value="FunctionPredecl" />
<option name="com.jetbrains.cidr.lang.util.OCDeclarationKind" value="Function" />
</file>
<class>
<option name="com.jetbrains.cidr.lang.util.OCDeclarationKind" value="Property" />
<option name="com.jetbrains.cidr.lang.util.OCDeclarationKind" value="Synthesize" />
<option name="com.jetbrains.cidr.lang.util.OCDeclarationKind" value="InitMethod" />
<option name="com.jetbrains.cidr.lang.util.OCDeclarationKind" value="StaticMethod" />
<option name="com.jetbrains.cidr.lang.util.OCDeclarationKind" value="InstanceMethod" />
<option name="com.jetbrains.cidr.lang.util.OCDeclarationKind" value="DeallocMethod" />
</class>
<extensions>
<pair source="cpp" header="h" fileNamingConvention="NONE" />
<pair source="c" header="h" fileNamingConvention="NONE" />
</extensions>
</Objective-C-extensions>
</code_scheme>
</component>
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="Encoding" addBOMForNewFiles="with NO BOM" />
</project>
\ No newline at end of file
<component name="MarkdownNavigator.ProfileManager">
<settings default="" pdf-export="" />
<settings default="" pdf-export="" plain-text-search-scope="Project Files" />
</component>
\ No newline at end of file
......@@ -24,7 +24,7 @@
</value>
</option>
</component>
<component name="ProjectRootManager" version="2" languageLevel="JDK_1_8" project-jdk-name="1.8" project-jdk-type="JavaSDK">
<component name="ProjectRootManager" version="2" languageLevel="JDK_1_7" project-jdk-name="1.8" project-jdk-type="JavaSDK">
<output url="file://$PROJECT_DIR$/build/classes" />
</component>
<component name="ProjectType">
......
......@@ -2,8 +2,11 @@
<project version="4">
<component name="ProjectModuleManager">
<modules>
<module fileurl="file://$PROJECT_DIR$/FlyAndroidMVP.iml" filepath="$PROJECT_DIR$/FlyAndroidMVP.iml" />
<module fileurl="file://$PROJECT_DIR$/MvpCms.iml" filepath="$PROJECT_DIR$/MvpCms.iml" />
<module fileurl="file://$PROJECT_DIR$/app/app.iml" filepath="$PROJECT_DIR$/app/app.iml" />
<module fileurl="file://$PROJECT_DIR$/app/app.iml" filepath="$PROJECT_DIR$/app/app.iml" />
<module fileurl="file://$PROJECT_DIR$/test/test.iml" filepath="$PROJECT_DIR$/test/test.iml" />
<module fileurl="file://$PROJECT_DIR$/test/test.iml" filepath="$PROJECT_DIR$/test/test.iml" />
<module fileurl="file://$PROJECT_DIR$/yesway2018.iml" filepath="$PROJECT_DIR$/yesway2018.iml" />
</modules>
......
......@@ -7,7 +7,7 @@ import android.app.Application;
/**
* Description: <初始化应用程序><br>
* Author: gxl<br>
* Author: mxdl<br>
* Date: 2018/6/6<br>
* Version: V1.0.0<br>
* Update: <br>
......
......@@ -18,7 +18,7 @@ import android.app.Activity;
/**
* Description: <Activity管理器><br>
* Author: gxl<br>
* Author: mxdl<br>
* Date: 2018/6/6<br>
* Version: V1.0.0<br>
* Update: <br>
......
......@@ -15,7 +15,7 @@ import android.widget.TextView;
/**
* Description: <公共的activity基类><br>
* Author: gxl<br>
* Author: mxdl<br>
* Date: 2018/6/6<br>
* Version: V1.0.0<br>
* Update: <br>
......
......@@ -20,7 +20,7 @@ import android.view.ViewGroup;
/**
* Description: <公共的Fragment基类><br>
* Author: gxl<br>
* Author: mxdl<br>
* Date: 2018/6/6<br>
* Version: V1.0.0<br>
* Update: <br>
......
......@@ -4,7 +4,7 @@ import android.os.Bundle;
/**
* Description: <><br>
* Author: gxl<br>
* Author: mxdl<br>
* Date: 2018/6/11<br>
* Version: V1.0.0<br>
* Update: <br>
......
......@@ -4,7 +4,7 @@ import android.os.Bundle;
/**
* Description: <><br>
* Author: gxl<br>
* Author: mxdl<br>
* Date: 2018/6/11<br>
* Version: V1.0.0<br>
* Update: <br>
......
......@@ -6,7 +6,7 @@ import android.view.View;
import android.view.ViewGroup;
/**
* Created by gxl on 2017/12/25.
* Created by mxdl on 2017/12/25.
*/
public abstract class BaseHeaderRecycleAdapter<E, VH extends RecyclerView.ViewHolder> extends BaseRecycelerViewAdapter<E, RecyclerView.ViewHolder> {
......
......@@ -9,7 +9,7 @@ import android.widget.BaseAdapter;
/**
* Description: <BaseListViewAdapter><br>
* Author: gxl<br>
* Author: mxdl<br>
* Date: 2018/6/11<br>
* Version: V1.0.0<br>
* Update: <br>
......
......@@ -11,7 +11,7 @@ import android.view.ViewGroup;
/**
* Description: <BaseRecycelerViewAdapter><br>
* Author: gxl<br>
* Author: mxdl<br>
* Date: 2018/6/11<br>
* Version: V1.0.0<br>
* Update: <br>
......
......@@ -2,7 +2,7 @@ package com.yesway.android.base.adapter;
/**
* Description: <><br>
* Author: gxl<br>
* Author: mxdl<br>
* Date: 2018/6/11<br>
* Version: V1.0.0<br>
* Update: <br>
......@@ -17,7 +17,7 @@ import android.view.ViewGroup;
/**
* Description: <BaseViewPagerAdapter></br>
* Author: gxl</br>
* Author: mxdl</br>
* Date: 2018/3/9</br>
* Version: V1.0.0</br>
* Update: </br>
......
......@@ -12,7 +12,7 @@ import android.util.Log;
/**
* Description: <接口服务工厂类><br>
* Author: gxl<br>
* Author: mxdl<br>
* Date: 2018/6/6<br>
* Version: V1.0.0<br>
* Update: <br>
......
package com.yesway.android.net;
/**
* Description: <接口地址工厂类><br>
* Author: gxl<br>
* Author: mxdl<br>
* Date: 2018/6/6<br>
* Version: V1.0.0<br>
* Update: <br>
......
......@@ -5,7 +5,7 @@ import com.yesway.android.net.util.ConstantUtils;
/**
* Description: <头信息><br>
* Author: gxl<br>
* Author: mxdl<br>
* Date: 2018/6/6<br>
* Version: V1.0.0<br>
* Update: <br>
......
......@@ -5,7 +5,7 @@ package com.yesway.android.net.dto.base;
* <ul>
* <li>1.请求头、相应头都会携带该信息</li>
* </ul>
* Author: gxl<br>
* Author: mxdl<br>
* Date: 2018/6/6<br>
* Version: V1.0.0<br>
* Update: <br>
......
......@@ -4,7 +4,7 @@ import com.yesway.android.net.util.ConstantUtils;
/**
* Description: <请求数据包><br>
* Author: gxl<br>
* Author: mxdl<br>
* Date: 2018/6/6<br>
* Version: V1.0.0<br>
* Update: <br>
......
......@@ -2,7 +2,7 @@ package com.yesway.android.net.dto.entity;
/**
* Description: <><br>
* Author: gxl<br>
* Author: mxdl<br>
* Date: 2018/6/6<br>
* Version: V1.0.0<br>
* Update: <br>
......
......@@ -2,7 +2,7 @@ package com.yesway.android.net.dto.request;
/**
* Description: <登陆请求实体><br>
* Author: gxl<br>
* Author: mxdl<br>
* Date: 2018/6/6<br>
* Version: V1.0.0<br>
* Update: <br>
......
......@@ -6,7 +6,7 @@ import com.yesway.android.net.dto.entity.UserInfo;
/**
* Description: <登录响应实体><br>
* Author: gxl<br>
* Author: mxdl<br>
* Date: 2018/6/6<br>
* Version: V1.0.0<br>
* Update: <br>
......
......@@ -6,7 +6,7 @@ import com.yesway.android.net.dto.entity.UserInfo;
/**
* Description: <用户响应实体><br>
* Author: gxl<br>
* Author: mxdl<br>
* Date: 2018/6/6<br>
* Version: V1.0.0<br>
* Update: <br>
......
......@@ -17,7 +17,7 @@ import android.util.Log;
/**
* Description: <Okhttp封装管理类><br>
* Author: gxl<br>
* Author: mxdl<br>
* Date: 2018/6/6<br>
* Version: V1.0.0<br>
* Update: <br>
......
......@@ -18,7 +18,7 @@ import android.widget.Toast;
/**
* Description: <响应回调接口适配器><br>
* Author: gxl<br>
* Author: mxdl<br>
* Date: 2018/6/6<br>
* Version: V1.0.0<br>
* Update: <br>
......
......@@ -2,7 +2,7 @@ package com.yesway.android.net.util;
/**
* Description: <请求头所要用的一些常量><br>
* Author: gxl<br>
* Author: mxdl<br>
* Date: 2018/6/6<br>
* Version: V1.0.0<br>
* Update: <br>
......
......@@ -22,7 +22,7 @@ import android.text.TextUtils;
/**
* Description: <APP应用环境相关><br>
* Author: gxl<br>
* Author: mxdl<br>
* Date: 2018/6/6<br>
* Version: V1.0.0<br>
* Update: <br>
......
......@@ -10,7 +10,7 @@ import android.os.Bundle;
/**
* Description: <用户登录页><br>
* Author: gxl<br>
* Author: mxdl<br>
* Date: 2018/6/11<br>
* Version: V1.0.0<br>
* Update: <br>
......
......@@ -5,7 +5,7 @@ import com.yesway.android.net.dto.entity.UserInfo;
/**
* Description: <><br>
* Author: gxl<br>
* Author: mxdl<br>
* Date: 2018/6/11<br>
* Version: V1.0.0<br>
* Update: <br>
......
......@@ -4,7 +4,7 @@ import com.yesway.android.base.BasePresenter;
/**
* Description: <><br>
* Author: gxl<br>
* Author: mxdl<br>
* Date: 2018/6/11<br>
* Version: V1.0.0<br>
* Update: <br>
......
......@@ -41,7 +41,7 @@ import android.widget.ScrollView;
* <li>11.读取图片的旋转的角度</li>
* <li>12.将图片按照某个角度进行旋转</li>
* </ul>
* Author: gxl<br>
* Author: mxdl<br>
* Date: 2018/6/11<br>
* Version: V1.0.0<br>
* Update: <br>
......
......@@ -10,7 +10,7 @@ import android.text.TextUtils;
/**
* Description: <DateUtil><br>
* Author: gxl<br>
* Author: mxdl<br>
* Date: 2018/6/11<br>
* Version: V1.0.0<br>
* Update: <br>
......
......@@ -6,7 +6,7 @@ import android.content.Context;
/**
* Description: <单位转换工具类><br>
* Author: gxl<br>
* Author: mxdl<br>
* Date: 2018/6/11<br>
* Version: V1.0.0<br>
* Update: <br>
......
......@@ -50,7 +50,7 @@ import android.util.Log;
* <li>3.获得APK包名</li>
* <li>4.判断是否已经安装</li>
* </ul>
* Author: gxl<br>
* Author: mxdl<br>
* Date: 2018/6/11<br>
* Version: V1.0.0<br>
* Update: <br>
......
......@@ -7,7 +7,7 @@ import java.util.regex.Pattern;
/**
* Description: <ToastUtil><br>
* Author: gxl<br>
* Author: mxdl<br>
* Date: 2018/6/11<br>
* Version: V1.0.0<br>
* Update: <br>
......
......@@ -31,7 +31,7 @@ import me.nereo.multi_image_selector.MultiImageSelector;
* <ul><li>1. 拍照、拍视频、选择图片完成的回调都在onActivityResult中回调的</l1>
* <li>2.选择图片获取:List<String> path = data.getStringArrayListExtra(MultiImageSelectorActivity.EXTRA_RESULT)</li>
* </ul>
* Author: gxl<br>
* Author: mxdl<br>
* Date: 2018/12/25<br>
* Version: V1.0.0<br>
* Update: <br>
......
......@@ -11,7 +11,7 @@ import android.support.annotation.NonNull;
/**
* Description: <ToastUtil><br>
* Author: gxl<br>
* Author: mxdl<br>
* Date: 2018/6/11<br>
* Version: V1.0.0<br>
* Update: <br>
......
......@@ -4,7 +4,7 @@ import java.math.BigDecimal;
/**
* Description: <数字格式化工具类><br>
* Author: gxl<br>
* Author: mxdl<br>
* Date: 2018/12/17<br>
* Version: V1.0.0<br>
* Update: <br>
......
......@@ -2,7 +2,7 @@ package com.yesway.android.util;
/**
* Description: <动态获取资源id><br>
* Author: gxl<br>
* Author: mxdl<br>
* Date: 2018/6/19<br>
* Version: V1.0.0<br>
* Update: <br>
......
......@@ -2,7 +2,7 @@ package com.yesway.android.util;
/**
* Description: <SPUtils><br>
* Author: gxl<br>
* Author: mxdl<br>
* Date: 2018/6/19<br>
* Version: V1.0.0<br>
* Update: <br>
......
......@@ -6,7 +6,7 @@ import android.view.inputmethod.InputMethodManager;
/**
* Description: <软键盘的显示与隐藏><br>
* Author: gxl<br>
* Author: mxdl<br>
* Date: 2018/6/11<br>
* Version: V1.0.0<br>
* Update: <br>
......
......@@ -7,7 +7,7 @@ import android.widget.Toast;
/**
* Description: <吐司工具类><br>
* Author: gxl<br>
* Author: mxdl<br>
* Date: 2018/6/11<br>
* Version: V1.0.0<br>
* Update: <br>
......
......@@ -9,7 +9,7 @@ import android.widget.TextView;
/**
* Description: <文字图标居中TextView><br>
* Author: gxl<br>
* Author: mxdl<br>
* Date: 2018/8/24<br>
* Version: V1.0.0<br>
* Update: <br>
......
......@@ -12,7 +12,7 @@ import android.widget.RelativeLayout;
/**
* Description: <><br>
* Author: gxl<br>
* Author: mxdl<br>
* Date: 2018/6/11<br>
* Version: V1.0.0<br>
* Update: <br>
......
......@@ -35,7 +35,7 @@ import com.yesway.android.R;
*
* https://github.com/m5/MagicTextView
* Description: <描边效果的TextView><br>
* Author: gxl<br>
* Author: mxdl<br>
* Date: 2018/8/24<br>
* Version: V1.0.0<br>
* Update: <br>
......
......@@ -9,7 +9,7 @@ import com.yesway.android.R;
/**
* Description: <NetworkErrorView><br>
* Author: gxl<br>
* Author: mxdl<br>
* Date: 2018/6/20<br>
* Version: V1.0.0<br>
* Update: <br>
......
......@@ -19,7 +19,7 @@ import com.yesway.android.util.DisplayUtil;
/**
* Description: <旋转进度的dialog><br>
* Author: gxl<br>
* Author: mxdl<br>
* Date: 2018/4/19<br>
* Version: V1.0.0<br>
* Update: <br>
......
......@@ -7,7 +7,7 @@ import android.view.MotionEvent;
/**
* Description: <RecyclerView空白区域点击监听><br>
* Author: gxl<br>
* Author: mxdl<br>
* Date: 2018/8/24<br>
* Version: V1.0.0<br>
* Update: <br>
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册