This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public class ProfilePhotoLayout extends ViewGroup { | |
| private ProfilePhoto mProfilePhoto; | |
| private Menu mMenu; | |
| private Title mTitle; | |
| private Subtitle mSubtitle; | |
| @Override | |
| protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) { | |
| // 1. Setup initial constraints. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Naming | |
| ## 1. File | |
| ### 1.1. Layout | |
| * Activity -> prefix **activity_** | |
| * Fragment -> prefix **fragment_** | |
| * Custom View -> prefix **view_** | |
| * List Item View -> prefix **item_** |
NewerOlder