2010-11-19 3 views
3

ich habe eine TabWidgetWas ist der entsprechende Code für Android: layout_above = "@ android: id/tabs"?

TabWidget tabWidget = new TabWidget(this); 
     tabWidget.setId(android.R.id.tabs); 

und FrameLayout

erstellt
FrameLayout frameLayout = new FrameLayout(this); 
     frameLayout.setId(android.R.id.tabcontent); 

wie oben Tabs machen framelayout?

**what is the equivalent code to "android:layout_above="@android:id/tabs"** 

EDIT

i mit diesem Code tue, ist es richtig? hey

TabHost tabHost = new TabHost(this); 
tabHost.setLayoutParams(
       new RelativeLayout.LayoutParams(
         LayoutParams.FILL_PARENT, LayoutParams.FILL_PARENT,1)); 
TabWidget tabWidget = new TabWidget(this); 
     tabWidget.setId(android.R.id.tabs); 

RelativeLayout.LayoutParams lp = new RelativeLayout.LayoutParams(width, height); 
lp.addRule(RelativeLayout.ABOVE, R.id.tabcontent); 
tabWidget.setLayoutParams(lp); 

tabHost.addView(tabWidget); 
FrameLayout frameLayout = new FrameLayout(this); 
     frameLayout.setId(android.R.id.tabcontent); 
     frameLayout.setPadding(0, 55, 0, 0); 
tabHost.addView(frameLayout, new RelativeLayout.LayoutParams(
        LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT)); 
tabHost.setup(); 

Antwort

5
RelativeLayout.LayoutParams lp = new RelativeLayout.LayoutParams(width, height); 
lp.addRule(RelativeLayout.ABOVE, R.id.tabcontent); 
tabWidget.setLayoutParams(lp); 
+0

i dono, wo ich falsch bin! es funktioniert nicht für mich! Lassen Sie mich meinen Code aktualisieren – Ads

+0

bin ich fehlt jedes relative Layout ??? – Ads

+0

Nun, natürlich müssen Sie eine RelativeLayout verwenden ... Android: Layout_oben ist spezifisch wie es seine Kinder ordnet. –