我实际上正在为 Android 4.0 开发平板电脑应用程序,我需要使用显示2或3个窗格的布局(就像默认的联系人一样) app)。 它将显示产品目录:
因此,我目前正在使用ListFragment
作为列表窗格,并使用简单的Fragment
作为详细信息窗格。最后一个实际上没有集成。
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<fragment
android:id="@+id/listFragment"
android:layout_width="0dip"
android:layout_weight=".3"
android:layout_height="match_parent"
class="com.###.###.ui.fragments.ListFragment" />
<fragment
android:id="@+id/detailsFragment"
android:layout_width="0dip"
android:layout_weight=".7"
android:layout_height="match_parent"
class="com.###.###.ui.fragments.DetailsFragment" />
</LinearLayout>
我还想遵循Android 4.0设计指南,并将与默认联系人应用程序相同的设计应用于我的应用程序。我搜索了有关如何应用此样式的任何教程,但我找不到任何相关内容。
Here's an exact picture of what I need.(对不起,我还不允许发布图片......)
我在指南网页上看到了this ressource picture。我确信有一种简单的方法可以在任何应用程序上实现这种风格......所以,如果有人可以帮我这样做......