0

これを見てください: http ://www.eurodroid.com/pics/android_foursquare_update_1.jpg

誰かがこのレイアウトがどのように構成されているか知っていますか?3タブのレイアウトですが、このタブの内容はありますか?テーブル、ListAdapterとは何ですか?

大いに感謝する。

4

2 に答える 2

4

Android用のFoursquareアプリはオープンソースです。 私はあなたが探しているのは彼らの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>
于 2010-11-03T19:27:49.570 に答える
0

そのタブのコンテンツは、具体的にはカスタマイズされたListViewです。ブライアンが指摘したように、ソースコードを参照して、使用された正確なXMLレイアウトを確認できます。

于 2010-11-03T20:03:28.023 に答える