好的程序架构无疑能更好的应对需求变更,也有利于团队协作,更能减少BUG和维护时间.规避一个模块花了3天去CODE,调试修改BUG却用一周的情况发生.那可是相当的悲剧
提升技巧:
关键字:action
为每个activity 设置 action.无疑此方法可以让activity之间实现最大的解耦.UI界面之间没有直接关联.保持这个原则.麻烦会少很多.
<activity
android:name="com.chanceit.ssss.activity.HomeActivity"
android:theme="@style/AppBaseTheme" >
<intent-filter>
<action android:name="com.chanceit.ssss.activity.home" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
startActivity(new Intent(com.chanceit.ssss.activity.home));
关键字fragment.
使用fragment布局.
关键字:约定大于配置
面向接口CODE.
关键字:style
<ImageButton
android:id="@+id/iv_passowrd_update"
style="@style/ButtonBase"
android:src="@android:drawable/ic_menu_preferences" />
<style name="ButtonBase">
<item name="android:onClick">onClick</item>
<item name="android:layout_width">wrap_content</item>
<item name="android:layout_height">wrap_content</item>
<item name="android:clickable">true</item>
</style>
使用以上技巧 代码量 时间将会节约很多很多.至少30%