在Android中,我用tab写了一个屏幕底部的菜单,为什么菜单不出来啊 70
菜单的写法<TabHostandroid:id="@+id/edit_item_tab_host1"android:layout_width="match_parent"...
菜单的写法
<TabHost
android:id="@+id/edit_item_tab_host1"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<TabWidget
android:id="@android:id/tabs"
android:layout_width="match_parent"
android:layout_height="wrap_content" >
</TabWidget>
<FrameLayout
android:id="@android:id/tabcontent"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<LinearLayout
android:id="@+id/tab1"
android:orientation ="horizontal"
android:layout_width="match_parent"
android:layout_height="match_parent" >
</LinearLayout>
<LinearLayout
android:id="@+id/tab2"
android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="match_parent" >
</LinearLayout>
<LinearLayout
android:id="@+id/tab3"
android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="match_parent" >
</LinearLayout>
</FrameLayout>
</LinearLayout>
</TabHost>
Activity里写的东西
tab_host = (TabHost) findViewById(R.id.edit_item_tab_host1);
tab_host.setup();
TabSpec ts1 = tab_host.newTabSpec("TAB_WEATHER");
ts1.setIndicator("Weather");
tab_host.addTab(ts1);
TabSpec ts2 = tab_host.newTabSpec("TAB_WEATHER");
ts1.setIndicator("Weather1");
tab_host.addTab(ts2);
TabSpec ts3 = tab_host.newTabSpec("TAB_WEATHER");
ts1.setIndicator("Weather2");
tab_host.addTab(ts3);
急急急急 展开
<TabHost
android:id="@+id/edit_item_tab_host1"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<TabWidget
android:id="@android:id/tabs"
android:layout_width="match_parent"
android:layout_height="wrap_content" >
</TabWidget>
<FrameLayout
android:id="@android:id/tabcontent"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<LinearLayout
android:id="@+id/tab1"
android:orientation ="horizontal"
android:layout_width="match_parent"
android:layout_height="match_parent" >
</LinearLayout>
<LinearLayout
android:id="@+id/tab2"
android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="match_parent" >
</LinearLayout>
<LinearLayout
android:id="@+id/tab3"
android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="match_parent" >
</LinearLayout>
</FrameLayout>
</LinearLayout>
</TabHost>
Activity里写的东西
tab_host = (TabHost) findViewById(R.id.edit_item_tab_host1);
tab_host.setup();
TabSpec ts1 = tab_host.newTabSpec("TAB_WEATHER");
ts1.setIndicator("Weather");
tab_host.addTab(ts1);
TabSpec ts2 = tab_host.newTabSpec("TAB_WEATHER");
ts1.setIndicator("Weather1");
tab_host.addTab(ts2);
TabSpec ts3 = tab_host.newTabSpec("TAB_WEATHER");
ts1.setIndicator("Weather2");
tab_host.addTab(ts3);
急急急急 展开
1个回答
展开全部
<TabHost> 标签 id 只能是: android:id="@android:id/tabhost"
追问
activity的写法对吗
追答
在LinerLayout布局里面嵌套FrameLayout和RelativeLayout布局,将TabWidget放置在RelativeLayout里面,之后设置RelativeLayout的android:layout_alignParentBottom="true" 属性,这个属性的功能是将TabWidget置于父元素(也就是LinerLayout)的底部。这样就能将Tab置于底部了。
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询