Intellij IDEA / Android Studio에서 병합 루트 태그가있는 미리보기 레이아웃
LinearLayout을 기반으로 복합 컴포넌트를 개발한다고 가정 해 봅시다. 따라서 다음과 같은 클래스를 만듭니다. public class SomeView extends LinearLayout { public SomeView(Context context, AttributeSet attrs) { super(context, attrs); setOrientation(LinearLayout.VERTICAL); View.inflate(context, R.layout.somelayout, this); } } LinearLayout의 루트로 사용할 경우 somelayout.xml추가 뷰 레벨이 있으므로 merge 태그를 사용합니다. <?xml version="1.0" encoding="utf-8"?> <merge xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" …