嗨
我是一個android用戶。我有內容列表頁,我成功完成了它。但問題是我必須在頁腳上放置兩個選項卡,並且頁腳選項卡應該保持永久。我也做了這麼多搜索來解決這個問題,bu找不到解決方案。任何人都請幫助我。android內容列表和頁腳
感謝,
Anoop
嗨
我是一個android用戶。我有內容列表頁,我成功完成了它。但問題是我必須在頁腳上放置兩個選項卡,並且頁腳選項卡應該保持永久。我也做了這麼多搜索來解決這個問題,bu找不到解決方案。任何人都請幫助我。android內容列表和頁腳
感謝,
Anoop
不要想嘗試添加頁眉和頁腳列表視圖?那麼請在列表視圖中。檢查的addHeader出這個link
我實現它,如果需要的話,我會張貼代碼
您需要使用TabHost與TabWidget中的FrameLayout下方的RelativeLayout的內部,而不是的LinearLayout,如下所示
<?xml version="1.0" encoding="utf-8"?>
<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">
<RelativeLayout
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:padding="5dp">
<FrameLayout
android:layout_alignParentTop="true"
android:id="@android:id/tabcontent"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:padding="5dp" />
<TabWidget
android:id="@android:id/tabs"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true" />
</RelativeLayout>
</TabHost>
感謝您的幫助。你可以請你發佈你的代碼,這將真的幫助我。我已經發布了我所有的代碼http://stackoverflow.com/questions/5242020/android-content-listing-and-footer-including-session – user359187 2011-03-09 06:26:17