编码习惯

  1. 在每个类中打印日志时,推荐使用TAG为这个类的类名;
private final static String TAG = Example.class.getSimpleName();

2.跳转到某个Activity的方法,建议在要跳转的Activity中创建如何跳转到该Activity的方法以及要传递的数据。这样可以在Activity页面就知道跳转到这个页面都会有什么数据会被传递过来;

public static void toNextActivity(Context context,String name){
    Intent intent = new Intent(context,NextActivity.class);
    intent.putExtra("intent_name",name);
    context.startActivity(intent);
}

-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-----------------last line for now----------------------