在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);
急急急急
展开
 我来答
man0306
2014-10-17 · TA获得超过958个赞
知道小有建树答主
回答量:707
采纳率:33%
帮助的人:400万
展开全部
<TabHost> 标签 id 只能是: android:id="@android:id/tabhost"
追问
activity的写法对吗
追答
在LinerLayout布局里面嵌套FrameLayout和RelativeLayout布局,将TabWidget放置在RelativeLayout里面,之后设置RelativeLayout的android:layout_alignParentBottom="true" 属性,这个属性的功能是将TabWidget置于父元素(也就是LinerLayout)的底部。这样就能将Tab置于底部了。
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式