2012-04-05 17 views
9

तो मैं टैब्स उपयोग कर रहा हूँ और नेविगेशन के इस प्रकार के लिए मांग:टुकड़ों में नेविगेट कैसे करें?

tab1 -> अंदर 1 -> inside2

tab2 - 3 के अंदर> -> अंदर 4

tab3 - -> 5

के अंदर मेरा मतलब है कि इसे एक नया लेआउट और कक्षा खोलनी चाहिए।

public class TabsFragmentActivity extends SherlockFragmentActivity implements 
     TabHost.OnTabChangeListener { 

    private TabHost mTabHost; 
    private HashMap<String, TabInfo> mapTabInfo = new HashMap<String, TabInfo>(); 
    private TabInfo mLastTab = null; 
    private static Context mContext; 

    private class TabInfo { 
     private String tag; 
     private Class clss; 
     private Bundle args; 
     private Fragment fragment; 

     TabInfo(String tag, Class clazz, Bundle args) { 
      this.tag = tag; 
      this.clss = clazz; 
      this.args = args; 
     } 
    } 

    class TabFactory implements TabContentFactory { 

     private final Context mContext; 

     public TabFactory(Context context) { 
      mContext = context; 
     } 

     public View createTabContent(String tag) { 
      View v = new View(mContext); 
      v.setMinimumWidth(0); 
      v.setMinimumHeight(0); 
      return v; 
     } 
    } 

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

     // Step 1: Inflate layout 
     setContentView(R.layout.tabs_fragment_activity); 

     mContext = this; 

     // Step 2: Setup TabHost 
     initialiseTabHost(savedInstanceState); 

     if (savedInstanceState != null) { 
      mTabHost.setCurrentTabByTag(savedInstanceState.getString("tab")); 
     } 

     addNavaigationBar(); 
    } 

    @Override 
    public boolean onCreateOptionsMenu(Menu menu) { 
     //Add Action item with title 
      menu.add("some") 
      .setShowAsAction(MenuItem.SHOW_AS_ACTION_IF_ROOM | MenuItem.SHOW_AS_ACTION_WITH_TEXT); 

     return super.onCreateOptionsMenu(menu); 
    } 

    public void addNavaigationBar() { 
     // Create Action Bar sherlock 
     ActionBar navigation_bar = getSupportActionBar(); 

     // Setting standart navigation bar view 
     navigation_bar.setNavigationMode(ActionBar.NAVIGATION_MODE_STANDARD); 

     navigation_bar.setDisplayShowTitleEnabled(true); 
     navigation_bar.setTitle("Test"); 

     // Override Action items to navigation bar. Calls onCreateOptionsMenu 
     // invalidateOptionsMenu(); 
    } 

    protected void onSaveInstanceState(Bundle outState) { 
     outState.putString("tab", mTabHost.getCurrentTabTag()); // save the tab 
                   // selected 
     super.onSaveInstanceState(outState); 
    } 

    /** 
    * Step 2: Setup TabHost 
    */ 
    private void initialiseTabHost(Bundle args) { 
     mTabHost = (TabHost) findViewById(android.R.id.tabhost); 

     mTabHost.setup(); 

     TabInfo tabInfo = null; 

     TabsFragmentActivity.addTab(this, this.mTabHost, this.mTabHost 
       .newTabSpec("Tab1").setIndicator("Tab 1"), 
       (tabInfo = new TabInfo("Tab1", Tab1Fragment.class, args))); 

     this.mapTabInfo.put(tabInfo.tag, tabInfo); 


     TabsFragmentActivity.addTab(this, this.mTabHost, this.mTabHost 
       .newTabSpec("Tab2").setIndicator("Tab 2"), 
       (tabInfo = new TabInfo("Tab2", Tab2Fragment.class, args))); 

     this.mapTabInfo.put(tabInfo.tag, tabInfo); 

     TabsFragmentActivity.addTab(this, this.mTabHost, this.mTabHost 
       .newTabSpec("Tab3").setIndicator("Tab 3"), 
       (tabInfo = new TabInfo("Tab3", Tab3Fragment.class, args))); 

     this.mapTabInfo.put(tabInfo.tag, tabInfo); 
     // Default to first tab 
     this.onTabChanged("Tab1"); 
     // 
     mTabHost.setOnTabChangedListener(this); 
    } 

    private static void addTab(TabsFragmentActivity activity, TabHost tabHost, 
      TabHost.TabSpec tabSpec, TabInfo tabInfo) { 
     // Attach a Tab view factory to the spec 
     tabSpec.setContent(activity.new TabFactory(activity)); 

     String tag = tabSpec.getTag(); 
     //getTabWidget() 

     View view = prepareTabView(activity, R.id.tab_bar_icon); 
     tabSpec.setIndicator(view); 

     // Check to see if we already have a fragment for this tab, probably 
     // from a previously saved state. If so, deactivate it, because our 
     // initial state is that a tab isn't shown. 
     tabInfo.fragment = activity.getSupportFragmentManager().findFragmentByTag(tag); 

     if (tabInfo.fragment != null && !tabInfo.fragment.isDetached()) { 

      FragmentTransaction ft = activity.getSupportFragmentManager().beginTransaction(); 

      ft.detach(tabInfo.fragment); 

      ft.commit(); 

      activity.getSupportFragmentManager().executePendingTransactions(); 
     } 
     tabHost.addTab(tabSpec); 
    } 

    private static View prepareTabView(Context context, int drawable){ 
     //inflate(R.layout.tab_indicator, android.R.id.tabs, false) 
     View tabIndicator = LayoutInflater.from(context).inflate(R.layout.tab_indicator, null); 
     ImageView icon = (ImageView) tabIndicator.findViewById(R.id.tab_bar_icon); 
     icon.setImageResource(R.drawable.ic_launcher); 
     return tabIndicator; 

    } 

    public void onTabChanged(String tag) { 
     TabInfo newTab = this.mapTabInfo.get(tag); 

     if (mLastTab != newTab) { 
      FragmentTransaction ft = this.getSupportFragmentManager() 
        .beginTransaction(); 
      if (mLastTab != null) { 
       if (mLastTab.fragment != null) { 
        ft.detach(mLastTab.fragment); 
       } 
      } 
      if (newTab != null) { 
       if (newTab.fragment == null) { 
        newTab.fragment = Fragment.instantiate(this, 
          newTab.clss.getName(), newTab.args); 
        ft.add(R.id.realtabcontent, newTab.fragment, newTab.tag); 
       } else { 
        ft.attach(newTab.fragment); 
       } 
      } 

      mLastTab = newTab; 
      ft.commit(); 
      this.getSupportFragmentManager().executePendingTransactions(); 
     } 
    } 

} 

यह वहाँ सामग्री के साथ 3 टैब्स बनाएँ:

मेरे परियोजना मुख्य वर्ग यह है।

public class Tab1Fragment extends SherlockFragment { 
    public View onCreateView(LayoutInflater inflater, ViewGroup container, 
      Bundle savedInstanceState) { 
     if (container == null) { 
      // We have different layouts, and in one of them this 
      // fragment's containing frame doesn't exist. The fragment 
      // may still be created from its saved state, but there is 
      // no reason to try to create its view hierarchy because it 
      // won't be displayed. Note this is not needed -- we could 
      // just run the code below, where we would create and return 
      // the view hierarchy; it would just never be used. 
      return null; 
     } 
     LinearLayout theLayout = (LinearLayout)inflater.inflate(R.layout.tab_frag1_layout, container, false); 
     // Register for the Button.OnClick event 
     Button b = (Button)theLayout.findViewById(R.id.frag1_button); 
     b.setOnClickListener(new View.OnClickListener() { 
      @Override 
      public void onClick(View v) { 

**//Here i want open a new window but don't change pressed tab and when press back it should go back at this window** 
      } 
     }); 
     return theLayout; 
    } 
} 

मैं बटन प्रेस पर लिखने के जो मैं चाहता: यहाँ कैसे देखते हैं tab1 टुकड़ा वर्ग (अन्य समान लग) है।

मैं इस खंड के अंदर एक नया टुकड़ा या गतिविधि नहीं खोल सकता?

मुझे टुकड़ों के अंदर नेविगेशन कैसे करना चाहिए?

उत्तर

13

मैं अपने मेजबान Activity सभी संक्रमणों को संभालने देना चाहता हूं, इसलिए मैं अपने टुकड़ों में जो करता हूं वह नेविगेशन को संभालने के लिए interface बनाता है। अपने TabsFragmentActivity में

public interface Callback { 
    public void onButtonBClicked(); 
} 

फिर, Tab1Fragment.Callback, जो आप onButtonBClicked() लागू करने के लिए की आवश्यकता होगी लागू: उदाहरण के लिए, यदि आप अपने Tab1Fragment को यह interface जोड़ सकते हैं। यहां एक उदाहरण दिया गया है कि आप इस विधि को कैसे कार्यान्वित कर सकते हैं:

@Override 
public void onButtonBClicked() { 

    Fragment anotherFragment = Fragment.instantiate(this, AnotherFragment.class.getName()); 
    FragmentTransaction ft = getFragmentManager().beginTransaction(); 
    ft.add(R.id.realtabcontent, anotherFragment); 
    ft.addToBackStack(null); 
    ft.commit(); 
} 

लगभग पूरा किया गया। इसके बाद, आपको अपने टुकड़े में इस कॉलबैक का संदर्भ प्राप्त करने की आवश्यकता है। यह आम तौर पर onAttached() विधि में प्राप्त होता है। उदाहरण के लिए:

@Override 
public void onAttach(Activity activity) { 

    super.onAttach(activity); 
    try { 
     mCallback = (Callback) activity; 
    } 
    catch (ClassCastException e) { 
     throw new ClassCastException(activity.toString() + " must implement " + Callback.class.getName()); 
    } 
} 

और अंत में, अपने OnClickListener में, mCallback.onButtonBClicked() कहते हैं।

+0

कॉलबैक का उपयोग करने का यह एक अच्छा उदाहरण है। लेकिन अगर मैं अपने Fragment1 OnClickListiner में कॉल करता हूं तो यह अंतर क्या है: ((टैब्स फ्रैगमेंट एक्टिविटी) getActivity())। ButtonBClicked(); यह भी बटनटनक्लिड() पर कॉल करेगा। लेकिन हर टैब के ढेर को संभालने के बारे में क्या? – Streetboy

+0

यह क्लीनर को छोड़कर कोई फर्क नहीं पड़ता है, जिस तरह से मैंने इसे किया है क्योंकि आपको केवल इसे एक बार डालना होगा (यदि आपके पास एकाधिक कॉल के साथ एक बीफियर इंटरफेस था)। 'OnButtonClicked()' के लिए मेरे पास कार्यान्वयन बैक स्टैक में टुकड़ा जोड़ता है, इसलिए वापस दबाकर पिछले खंड को दिखाया जाएगा। –

+0

ठीक है तो टैब कैसे स्विच करें? मेरा मतलब है कि मैं टैब 1 को गहरे ढेर में जाता हूं, फिर टैब 2 पर स्विच करता हूं और वहां गहराई में जाता है और फिर टैब 1 पर फिर से स्विच करता है और बैक बटन दबाता हूं और मैं चाहता हूं कि यह टैब 1 – Streetboy

संबंधित मुद्दे