ลองจินตนาการว่าเรากำลังพัฒนาส่วนประกอบเชิงซ้อนโดยใช้ 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
เราจะมีระดับมุมมองเพิ่มเติมดังนั้นเราจึงใช้แท็กผสาน:
<?xml version="1.0" encoding="utf-8"?>
<merge xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Some text"
android:textSize="20sp"/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Some other text"/>
</merge>
แต่ในแท็บดูตัวอย่างในการผสาน IDE จะทำหน้าที่เป็น FrameLayout เสมอและเราจะเห็นสิ่งต่อไปนี้:
(มันเป็น Android Studio, Intellij IDEA ก็เหมือนกัน, เกี่ยวกับ Eclipse ฉันไม่รู้)
ดูตัวอย่างเร่งความเร็วการพัฒนาเลย์เอาต์มันเป็นเรื่องน่าเศร้าที่สูญเสียความช่วยเหลือที่ยอดเยี่ยมแม้แต่ในบางเลย์เอาต์ อาจมีวิธีการระบุวิธีดูตัวอย่างควรตีความmerge
แท็กในรูปแบบเฉพาะหรือไม่