在 android 中是否可以在 1 个布局中有 2 个活动?
Is it possible to have 2 activities in 1 layout in android?
我是在 Android Studio 中进行开发的初学者...我创建了 2 个选项卡,其中包含 2 个不同的活动。两者都有搜索功能。那么在 Android Studio 中是否可以在 1 个布局中有 2 个活动?
是的。您可以使用两个布局相似的活动。
但正如 android 设计建议,您应该为这些类型的动态 UI 布局使用 Fragment。
查看这些教程以更好地理解:
https://developer.android.com/training/basics/fragments/index.html
创建两个 activity 作为 activity1.java 和 activity2.java
然后在 activity_main 中创建 2 个片段并将它们的 activity 名称传递给 "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" />
我是在 Android Studio 中进行开发的初学者...我创建了 2 个选项卡,其中包含 2 个不同的活动。两者都有搜索功能。那么在 Android Studio 中是否可以在 1 个布局中有 2 个活动?
是的。您可以使用两个布局相似的活动。
但正如 android 设计建议,您应该为这些类型的动态 UI 布局使用 Fragment。
查看这些教程以更好地理解: https://developer.android.com/training/basics/fragments/index.html
创建两个 activity 作为 activity1.java 和 activity2.java
然后在 activity_main 中创建 2 个片段并将它们的 activity 名称传递给 "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" />