1

我使用ActionBarSherlock在我的應用程序上獲得了一些Holo主題選項卡和一個ActionBar,並創建了一個片段來處理每個選項卡上的行爲。我希望沿着底部的標籤和一個按鈕將片段「夾在」屏幕底部,這樣就會出現一個按鈕,在兩個片段之間都會有一個點擊監聽器。在ActionBarSherlock中跨碎片使用一個常用按鈕

在我的活動中,我創建了這樣的標籤。

public class InviteFriendsActivity extends SherlockFragmentActivity implements ActionBar.TabListener 
{ 
    protected void onCreate(Bundle savedInstanceState) 
    { 
    super.onCreate(savedInstanceState); 

    ActionBar bar = getSupportActionBar(); 
    bar.setNavigationMode(ActionBar.NAVIGATION_MODE_TABS); 

    ActionBar.Tab tab1 = bar.newTab(); 
    tab1.setText("Tab 1"); 
    tab1.setTabListener(this); 

    ActionBar.Tab tab2 = bar.newTab(); 
    tab2.setText("Tab 2"); 
    tab2.setTabListener(this); 

    bar.addTab(tab1); 
    bar.addTab(tab2); 
    } 
} 

然後,我創建了onTabSelected

public void onTabSelected(Tab tab, FragmentTransaction ft) 
{ 
    if (tab.getPosition() == 0) 
    { 
     Fragment1 frag = new Fragment1(); 
     ft.replace(android.R.id.content, frag); 
    } 
    else if (tab.getPosition() == 1) 
    { 
     Fragment2 frag = new Fragment2(); 
     ft.replace(android.R.id.content, frag); 
    } 
} 

我沒有問題,得到的標籤,以顯示或更改,但我似乎無法弄清楚如何得到一個按鈕就行了屏幕底部並在此活動中保持靜態,並仍然允許我在兩個片段之間切換。

回答

2

你想要一個按鈕,通過每個片段和每個選項卡顯示?
這可以通過使用顯示片段的fragmentcontainer輕鬆完成。 例如使用這樣的佈局:

<?xml version="1.0" encoding="utf-8"?> 
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" 
    android:layout_width="match_parent" 
    android:layout_height="match_parent" > 

    <fragment 
     android:name="com.example.yourfragmentcontainer" 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:layout_above="@+id/button1" 
     android:layout_alignParentTop="true" 
     android:layout_centerHorizontal="true" /> 

    <Button 
     android:id="@+id/button1" 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:layout_alignParentBottom="true" 
     android:layout_alignParentLeft="true" 
     android:layout_alignParentRight="true" 
     android:text="Button" /> 

</RelativeLayout> 

如需幫助如何設置使用fragmentcontainer看看本教程ActonBar:http://arvid-g.de/12/android-4-actionbar-with-tabs-example

+0

這讓佈局看起來像我想要的,感謝您的鏈接。 –

相關問題