我是初学者,在Android Studio中进行开发......我创建了2个包含2个不同活动的标签。它们都具有搜索功能。那么在Android Studio中可以在1个布局中拥有2个活动吗?
答案 0 :(得分:1)
是。您可以使用两种布局相似的活动。
但是正如Android设计建议的那样,你应该将Fragment用于这些类型的动态UI布局。
查看这些教程以便更好地理解: https://developer.android.com/training/basics/fragments/index.html
答案 1 :(得分:1)
创建两个活动作为activity1.java和activity2.java
然后在activity_main中创建2个片段并将其活动名称传递给" android:name"
<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" />