看看這個: http://www.eurodroid.com/pics/android_foursquare_update_1.jpg信息關於Foursquare的應用程序佈局
有人知道如何構成該佈局嗎? 是3選項卡布局,但此選項卡的內容? 是一張表,一個ListAdapter,是什麼?
非常感謝。
看看這個: http://www.eurodroid.com/pics/android_foursquare_update_1.jpg信息關於Foursquare的應用程序佈局
有人知道如何構成該佈局嗎? 是3選項卡布局,但此選項卡的內容? 是一張表,一個ListAdapter,是什麼?
非常感謝。
該選項卡的內容特別是剛剛定製的ListView。正如Bryan所指出的那樣,您可以瀏覽源代碼以查看他們使用的確切XML佈局。
The Foursquare app for Android is open source.我相信你在找什麼是他們的main_activity.xml:
<TabHost xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@android:id/tabhost"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
<!-- Background color should be the last value in the selected tab gradient. -->
<LinearLayout
android:id="@+id/tabBackground"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:padding="0dip"
android:background="#4d4d4d">
<TabWidget
android:id="@android:id/tabs"
android:layout_width="fill_parent"
android:layout_height="wrap_content" />
<!-- A paddingTop of zero will remove the strip below the tabs. -->
<FrameLayout
android:id="@android:id/tabcontent"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:paddingTop="5dip" />
</LinearLayout>
</TabHost>