2013-05-12 123 views
1

首先,我想澄清一下,我對Android不是很有經驗,但是,有沒有辦法在android手機上覆制/複製顯示的佈局?例如,我在主屏幕上,我的手機在屏幕上顯示了兩個相同的圖像。Android顯示重複/複製的佈局?

這是我正在談論的一個例子的圖片。 (您可以忽略水印/幀的事情):

http://i1135.photobucket.com/albums/m637/mxmark825/Diagram.jpg

我想嘗試做的基本上是什麼使手機顯示2個佈局像它會如果對手機的前2個獨立的屏幕。

任何想法/幫助非常感謝。

回答

1

你可以像dup.xml單獨的XML定義佈局,然後讓你活​​動佈局XML象下面這樣:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
    android:orientation="horizontal" 
    android:layout_width="match_parent" 
    android:layout_height="match_parent"> 
    <include layout="@layout/dup" /> 
    <include layout="@layout/dup" /> 
</LinearLayout>