준비물 1. 만들 뷰 xml 생성 2. 저장하고싶은 LinearLayout 생성 3. 동적으로 생성된 뷰 클래스 만들기 ( 선택사항 ) 1. 만들 뷰 xml 생성 2. 저장 하고 싶은 Layout 3. 뷰클래스 ( 선택사항 ) public class Layout_money extends LinearLayout { public Layout_money(Context context, @Nullable AttributeSet attrs) { super(context, attrs); init(context); } public Layout_money(Context context) { super(context); init(context); } private void init(Context context){ Layou..