2016-07-19 14 views
0

Ich folge dem offiziellen Android-Tutorial zum Einfügen von Wischen Tabs Layout in einem Fragment meiner Navigationsleiste.Wie wird das Tabulatorlayout innerhalb eines Fragments einer Navigationsleiste erstellt?

import com.example.android.supportv4. 
    import android.os.Bundle; 
    import android.support.v4.app.FragmentActivity; 
    import android.support.v4.app.FragmentTabHost; 

/** 
* This demonstrates how you can implement switching between the tabs of a 
* TabHost through fragments, using FragmentTabHost. 
*/ 
public class FragmentTabs extends FragmentActivity { 
private FragmentTabHost mTabHost; 

@Override 
protected void onCreate(Bundle savedInstanceState) { 
    super.onCreate(savedInstanceState); 

    setContentView(R.layout.fragment_tabs); 
    mTabHost = (FragmentTabHost)findViewById(android.R.id.tabhost); 
    mTabHost.setup(this, getSupportFragmentManager(), R.id.realtabcontent); 

    mTabHost.addTab(mTabHost.newTabSpec("simple").setIndicator("Simple"), 
      FragmentStackSupport.CountingFragment.class, null); 
    mTabHost.addTab(mTabHost.newTabSpec("contacts").setIndicator("Contacts"), 
      LoaderCursorSupport.CursorLoaderListFragment.class, null); 
    mTabHost.addTab(mTabHost.newTabSpec("custom").setIndicator("Custom"), 
      LoaderCustomSupport.AppListFragment.class, null); 
    mTabHost.addTab(mTabHost.newTabSpec("throttle").setIndicator("Throttle"), 
      LoaderThrottleSupport.ThrottledLoaderListFragment.class, null); 
    } 
} 

Bitte helfen Sie mir zu verstehen, was die "R.id.realtabcontent" ist. Wie mache ich das XML-Layout dieses Fragments?

+0

Abhängig von der Methode 'Setup'. Veröffentlichen Sie den Code dieser Methode und erklären Sie, was genau nicht funktioniert. – Vucko

+0

gut..ein funktionierendes XML-Layout? –

Antwort

0

R.id.realtabcontent ist die ID von FragmentTabHost. Im Folgenden finden Sie eine einfache XML-Arbeits für "fragment_tabs.xml"

<android.support.v4.app.FragmentTabHost 
    xmlns:android="http://schemas.android.com/apk/res/android" 
    android:id="@+id/realtabcontent" 
    android:layout_width="fill_parent" 
    android:layout_height="fill_parent" > 

    <LinearLayout 
    android:layout_width="fill_parent" 
    android:layout_height="fill_parent" 
    android:orientation="vertical" > 
    <TabWidget 
    android:id="@android:id/tabs" 
    android:layout_width="fill_parent" 
    android:layout_height="wrap_content" /> 
    <FrameLayout 
    android:id="@android:id/tab_content" 
    android:layout_width="fill_parent" 
    android:layout_height="fill_parent" > 
    </FrameLayout> 
</LinearLayout></android.support.v4.app.FragmentTabHost>