2015-09-23 67 views
0

我是初學者,在Android Studio中開發...我創建了2個選項卡和2個不同的活動。他們都有搜索功能。那麼是否有可能在Android Studio中的1個佈局中有2個活動?是否有可能在Android的1佈局中有2個活動?

+0

你可以用碎片代替 –

+0

什麼是碎片?對不起,我begginer –

+0

http://developer.android.com/intl/zh-tw/guide/components/fragments.html –

回答

1

創建兩個活性activity1.java和activity2.java
然後在activity_main創建2個片段,並在通過他們的活動名稱「安卓名」
<fragment android:name="com.example.activity1" android:id="@+id/fragment_place" android:layout_width="match_parent" android:layout_height="match_parent" />
<fragment android:name="com.example.activity2" android:id="@+id/fragment_place" android:layout_width="match_parent" android:layout_height="match_parent" />

相關問題