如何将里面的android布局布局

问题描述:

如何包括内部布局布局Android的?

How to include layout inside layout in Android?

我创造共同的布局。我想包括在另一个页面布局。

I am creating common layout. I want to include that layout in another page.

编辑:作为在这里理所当然地要求更多的信息评论。使用包括标记

As in a comment rightly requested here some more information. Use the include tag

<include
   android:layout_width="fill_parent"
   android:layout_height="wrap_content"
   layout="@layout/yourlayout" />

包括要重复使用的布局。

to include the layout you want to reuse.

检查此链接的出......

Check this link out...