What subpackage name to choose for menus, dialogs, etc?
It looks like my stuff like menus, alert dialogs and other things are growing and I have a lot of classes, xml files mixed all 开发者_开发技巧together. I want to move these 'addons' to a separate package. What is a common name for such kind of things?
If your root package is com.stovflw.app then choose com.stovflw.app.widgets or com.stovflw.app.view.widgets
suppose the root package for your application is com.cdnsol.app
then when you bundle all the menu, alert and other utilities in another package, it name should be com.cdnsol.util
depicting as utility package.
精彩评论