2011-09-23 17 views
17

मुझे एंड्रॉइड एप्लिकेशन विकसित किया गया था। मैंने पूरा किया है, लेकिन मैं विकल्प को कम करना चाहता हूं। मैंने टैब बार का उपयोग किया है। उसमें मैं टैब को कम करना चाहता हूं। जब उपयोगकर्ता पूरे एप्लिकेशन को कम करने के लिए टैब को कम से कम क्लिक करता है। के रूप में मेरे tabbar कोड ..एंड्रॉइड में पूरे एप्लिकेशन को कम करने के लिए कैसे?

public class tabbar extends TabActivity implements OnTabChangeListener { 
    private Context mContext; 
    TabHost tabHost; 
    int tabload=0; 
    private AlertDialog alertDialog; 

    /** Called when the activity is first created. */ 
    @Override 
    public void onCreate(Bundle savedInstanceState) { 
     super.onCreate(savedInstanceState); 
     setContentView(R.layout.tabbar); 
     //mContext=this; 

     /** TabHost will have Tabs */ 
     tabHost = (TabHost)findViewById(android.R.id.tabhost); 
     tabHost.setOnTabChangedListener(this); 



     /** TabSpec used to create a new tab. 
     * By using TabSpec only we can able to setContent to the tab. 
     * By using TabSpec setIndicator() we can set name to tab. */ 

     /** tid1 is firstTabSpec Id. Its used to access outside. */ 
     TabSpec firstTabSpec = tabHost.newTabSpec("tab_id1"); 
     TabSpec secondTabSpec = tabHost.newTabSpec("tab_id2"); 
     TabSpec thirdTabSpec = tabHost.newTabSpec("tab_id3"); 


     /** TabSpec setIndicator() is used to set name for the tab. */ 
     /** TabSpec setContent() is used to set content for a particular tab. */ 
     firstTabSpec.setIndicator("FRIENDS").setContent(new Intent(this,view_friends.class)); 
     secondTabSpec.setIndicator("GROUPS").setContent(new Intent(this,groups.class)); 
     thirdTabSpec.setIndicator("SIGN OUT").setContent(new Intent(this,signout.class)); 


     /** Add tabSpec to the TabHost to display. */ 
     tabHost.addTab(firstTabSpec); 
     tabHost.addTab(secondTabSpec); 
     tabHost.addTab(thirdTabSpec); 



    } 



     @Override 
     public void onTabChanged(String tabId) { 
     // TODO Auto-generated method stub 

     for(int i=0;i<tabHost.getTabWidget().getChildCount();i++) 
      { 
        tabHost.getTabWidget().getChildAt(i).setBackgroundColor(Color.parseColor("#343333")); //unselected 
      } 
         tabHost.getTabWidget().getChildAt(tabHost.getCurrentTab()).setBackgroundColor(Color.parseColor("#f1a026"));  // selected 
    //   if(tabId.equals("tab_id1")){ 
    //    LocalActivityManager manager = getLocalActivityManager(); 
    //    manager.destroyActivity("tab_id1", true); 
    //    manager.startActivity("tab_id1", new Intent(this, view_friends.class)); 
    //   } 

    } 
    @Override 
    protected void onDestroy() { 
     super.onDestroy(); 
     tabHost.setCurrentTab(2); 
     System.gc(); 
    } 


} 

इस कोड को यदि कोई सुधार की जरूरत है मदद कृपया में ...

मुझे एक नमूना कोड दे ..

+0

"कम से कम" को परिभाषित छुपाना चाहता है, तो पर्याप्त से अधिक है। क्या आप ['Activity.finish()'] (http://developer.android.com/reference/android/app/Activity.html#finish()) ढूंढ रहे हैं? –

+0

अब आप क्या चाहते हैं? आप "होम" बटन के समान व्यवहार चाहते हैं? यह वास्तव में स्पष्ट नहीं है। – Nanne

+0

हाँ मैं अपने टैब में होम बटन व्यवहार चाहता हूं – Selva

उत्तर

45

मुझे यकीन है कि आप द्वारा क्या मतलब है नहीं कर रहा हूँ छोटा करना। यदि आप अपना ऐप छिपाना चाहते हैं और उपयोगकर्ता को होमस्क्रीन के साथ पेश करना चाहते हैं तो आप निम्न मंशा का उपयोग कर सकते हैं।

Intent startMain = new Intent(Intent.ACTION_MAIN); 
startMain.addCategory(Intent.CATEGORY_HOME); 
startMain.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK); 
startActivity(startMain); 

हालांकि होम बटन एक उपयोगकर्ता ने आपके ऐप

+0

पर क्लिक करें जो मैं ढूंढ रहा था। – Derzu

+1

अन्य एप्लिकेशन से कैसे कम करें? – codezjx