说说配置环境变量的方法:
vim ~/.bash_profile 进入配置文件
添加路径例如:
PATH=$PATH:
/Users/linyue/mywork/script:

保存后退出,source ~/.bash_profile,执行生效的指令
由于我每次关闭窗口后,都要重新执行source 才能重新生效,固将路径添加到了~/.zshrc文件里解决了。
据了解,计算机每次都会默认执行~/.zshrc 文件,所以添加到这里保证肯定会执行,也可在~/.zshrc文件里加一句 source ~/.bash_profile。
android中提示&对话框----AlertDialog
android中提示&对话框----Notification
android中提示&对话框----Toast
android中与Adapter相关的控件----ViewFlipper
android中与Adapter相关的控件----ExpandableListView
android中与Adapter相关的控件----Spinner&AutoCompleteTextView
android中与Adapter相关的控件----GridView
android中与Adapter相关的控件----ListView
android中Adapter适配器的讲解