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
erstelltFrameLayout 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();
i dono, wo ich falsch bin! es funktioniert nicht für mich! Lassen Sie mich meinen Code aktualisieren – Ads
bin ich fehlt jedes relative Layout ??? – Ads
Nun, natürlich müssen Sie eine RelativeLayout verwenden ... Android: Layout_oben ist spezifisch wie es seine Kinder ordnet. –