我想在 android 平板电脑中制作应用程序,例如在 ipad 中具有分屏功能,
我怎么能这样做?如果任何人有想法请发给我!
先感谢您。
我想在 android 平板电脑中制作应用程序,例如在 ipad 中具有分屏功能,
我怎么能这样做?如果任何人有想法请发给我!
先感谢您。
这可以使用Fragments API来实现。Fragments
自 Android 3.0 起可用,但还有一个支持库可让您使用 Android 1.6 中的这些 API。希望这可以帮助。
使用片段:检查http://mobile.tutsplus.com/tutorials/android/android-compatibility-working-with-fragments/
这是一个使用兼容性包的示例应用程序的教程(允许您从 API 4 支持),它可能有帮助
这将是片段 xml 文件。那么您必须为 CustomerList(左部分)和 CustomerInfo(右部分)编写两个 xml 文件。您的活动应该扩展 FragmentActivity。试试这个:::
<fragment class="ui.misc.Customers$CustomerList"
android:id="@+id/customerlistfragmant" android:layout_weight="1"
android:layout_width="550px"
android:layout_height="wrap_content"
/>
<fragment class="ui.misc.Customers$CustomerInfo"
android:id="@+id/customerinfofragmant" android:layout_weight="1"
android:layout_width="350px" android:layout_height="wrap_content" />
<FrameLayout android:id="@+id/regscreentwo" android:layout_weight="1"
android:layout_width="0px"
android:layout_height="fill_parent"
/>
</LinearLayout>
这不是仅限于 iOS 的“功能”,您可以在 Android 中轻松做到这一点,方法是使用两个垂直的 LinearLayouts 并为它们分配相等的权重 - 将屏幕分成两半或不同的权重,以实现类似于您提供的图像的效果。
当然,还有很多其他方法可以做到这一点。
您可以使用此处描述的 API:Fragments API