黑马程序员技术交流社区

标题: Android开发基础规范 [打印本页]

作者: s952397683    时间: 2016-9-21 22:43
标题: Android开发基础规范
转载请把头部出处链接和尾部二维码一起转载,本文出自逆流的鱼yuiop:http://blog.csdn.net/hejjunlin/article/details/52602487
前言:Android中一些开发规范,避免给自己和别人少留坑。
一、工程相关//create by 逆流的鱼yuiop on 2016/9/21//blog地址:http://blog.csdn.net/hejjunlin- src/androidTest- src/test- src/commonTest- src/main- androidTest - 功能测试目录- test - 单元测试目录- commonTest - 为AndroidTest & Test 提供的共享测试代码的目录- main - 应用代码目录
当你修改或者增加新功能的时候,工程结构依然应该保持如上的样子。
使用如上的工程结构可以让我们的应用代码从相关的测试代码中分离出来。
CommonTest目录使得我们的功能测试和单元测试可以共享部分代码,比如mock model creation and dagger test configuration classes.
//create by 逆流的鱼yuiop on 2016/9/21//blog地址:http://blog.csdn.net/hejjunlinAndroidActivity, NetworkHelper, UserFragment, PerActivity
任何继承自android组件的类都应该使用组件名称来结尾,比如:
//create by 逆流的鱼yuiop on 2016/9/21//blog地址:http://blog.csdn.net/hejjunlinUserFragment, SignUpActivity, RateAppDialog, PushNotificationServer, NumberView
//create by 逆流的鱼yuiop on 2016/9/21
//blog地址:http://blog.csdn.net/hejjunlin
TypePrefixExample
Selectorselector_selector_button_cancel
Backgroundbg_bg_rounded_button
Circlecircle_circle_white
Progressprogress_progress_circle_purple
Dividerdivider_divider_grey在Android Studio中这个命名约定依然可以帮助我们将相似的组织到一起
并清晰的标识出这一文件用作什么
比如, 命令一个资源为“button_cancel”不能标识任何信息
这是一个selector资源呢还是一个圆角按钮背景呢?
正确的命名可以去除所有的引起的模糊不清.
在创建selector不同状态资源时,也应该使用对应的命名下标:
//create by 逆流的鱼yuiop on 2016/9/21
//blog地址:http://blog.csdn.net/hejjunlin
StateSuffixExample
Normal_normalbtn_accept_normal
Pressed_pressedbtn_accept_pressed
Focused_focusedbtn_accept_focused
Disabled_disabledbtn_accept_disabled
Selected_selectedbtn_accept_selected使用如上清晰的下标绝对明显的标识出了selector状态资源的作用。
为有颜色和其他标识的资源文件增加下标,使得开发者在打开selector文件时就可以知道不同的selector资源的状态是什么
1.2.2.2 Layout 文件
在命名布局文件时,应该用android组件的名称作为文件名的前缀,比如:
//create by 逆流的鱼yuiop on 2016/9/21
//blog地址:http://blog.csdn.net/hejjunlin
ComponentClass NameLayout Name
ActivityMainActivityactivity_main
FragmentMainFragmentfragment_main
DialogRateDialogdialog_rate
WidgetUserProfileViewview_user_profile
AdapterViewItemN/A item_follower注意:如果要创建的布局文件是有多个不同组件使用的,那么应该使用”layout_”前缀
这样不仅在层级目录中可以很方便的找到文件,
这样也可以帮助我们定义相应的这个layout布局文件归属的类。

1.2.2.3 Menu Files
菜单文件不需要使用“menu_”前缀。
在资源目录下已经有菜单包了,所以这是不必要的。

1.2.2.4 Values Files
所有的资源文件名必须是复数的,比如:
attrs.xml, strings.xml, styles.xml, colors.xml, dimens.xml

二、代码相关
//create by 逆流的鱼yuiop on 2016/9/21//blog地址:http://blog.csdn.net/hejjunlinpublic void setUserId(String id) {    try {        mUserId = Integer.parseInt(id);    } catch (NumberFormatException e) { }}
如果这里出现问题,这里不会打印出任何信息,而且也很难debug,只能让人迷惑。
当catch一个异常时,我们总是需要输出error日志到控制台,用于调试,如果必要的话,需要警告用户这个异常。比如:
//create by 逆流的鱼yuiop on 2016/9/21//blog地址:http://blog.csdn.net/hejjunlinpublic void setCount(String count) {    try {        count = Integer.parseInt(id);    } catch (NumberFormatException e) {        count = 0;        Log.e(TAG, "There was an error parsing the count " + e);        DialogFactory.showErrorMessage(R.string.error_message_parsing_count);    }}
这里我们有如下的方式处理出错:
2.1.2 不要catch最大的异常(Exception):
//create by 逆流的鱼yuiop on 2016/9/21//blog地址:http://blog.csdn.net/hejjunlinpublic void openCustomTab(Context context, Uri uri) {    Intent intent = buildIntent(context, uri);    try {        context.startActivity(intent);    } catch (Exception e) {        Log.e(TAG, "There was an error opening the custom tab " + e);    }}
为什么不这样做呢?
在大部分情况下,catch这个大的Exception或者Throwable都是不合适的。(特别是Throwable因为它包含Error的异常。)
这样意味着你没有期望到的最终要捕获的异常(包括RuntimeExceptions像CLassCastException)都被捕获并在应用层进行error处理,这样是很危险的。
如果有人在你调用的代码里添加了一个新的类型的异常,编译器不会帮你认识到你需要处理这个不同的错误类型。这是你代码里很难发现的错误处理方式。
大多数情况下,你不应该用相同的处理方式来处理不同的exception.
如下,catch期望的异常并正确的处理:
//create by 逆流的鱼yuiop on 2016/9/21//blog地址:http://blog.csdn.net/hejjunlinpublic void openCustomTab(Context context, Uri uri) {    Intent intent = buildIntent(context, uri);    try {        context.startActivity(intent);    } catch (ActivityNotFoundException e) {        Log.e(TAG, "There was an error opening the custom tab " + e);    }}
2.1.3 组织 exceptions
在异常运行相同的代码的地方,他们应该增加可读性和避免代码复制。比如,你可能会像如下这样处理异常:
//create by 逆流的鱼yuiop on 2016/9/21//blog地址:http://blog.csdn.net/hejjunlinpublic void openCustomTab(Context context, @Nullable Uri uri) {    Intent intent = buildIntent(context, uri);    try {        context.startActivity(intent);    } catch (ActivityNotFoundException e) {        Log.e(TAG, "There was an error opening the custom tab " + e);    } catch (NullPointerException e) {        Log.e(TAG, "There was an error opening the custom tab " + e);    } catch (SomeOtherException e) {        // Show some dialog    }}
你可以这样做:
//create by 逆流的鱼yuiop on 2016/9/21//blog地址:http://blog.csdn.net/hejjunlinpublic void openCustomTab(Context context, @Nullable Uri uri) {    Intent intent = buildIntent(context, uri);    try {        context.startActivity(intent);    } catch (ActivityNotFoundException e | NullPointerException e) {        Log.e(TAG, "There was an error opening the custom tab " + e);    } catch (SomeOtherException e) {        // Show some dialog    }}
2.1.4 Using try-catch over throw exception
在exception出现的地方使用try-catch块增加代码可读性
在代码中error发生的地方就处理,这样不管是debug还是更改error处理都很容易。

2.1.5 不要使用垃圾回收器






欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2