为什么我的 TabWidget 看起来不像预期的那样?
我想创建一个简单的 TabActivity 并按照开发人员网站上的教程进行操作。实现工作正常,但布局让我烦恼。首先文字是白色的,当背景是白色的时候,灰色的时候,背景是灰色的。我认为正常的行为会是相反的。但底部应该连接不同选项卡的这条白线也丢失了。
这是我的布局:
常规选项卡布局
<TabHost
android:id="@android:id/tabhost"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="1">
<LinearLayout
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<TabWidget
android:id="@android:id/tabs"
android:layout_width="fill_parent"
android:layout_height="wrap_content" />
<FrameLayout
android:id="@android:id/tabcontent"
android:layout_width="fill_parent"
android:layout_height="wrap_content" />
</LinearLayout>
</TabHost>
<include layout="@layout/menu_back_only" />
</LinearLayout>
选择
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item
android:drawable="@drawable/menu_home"
android:state_selected="true" />
<item
android:drawable="@drawable/menu_logout" />
</selector>
这就是它现在的样子:
I want to create a simple TabActivity and followed the tutorial on the developer site. The implementation works fine, but the layout bothers me. First of all the text is white, when the background is white and gray, when the background is gray. I thought the regular behavior would be the opposite. But also this one white line on the bottom, that should connect the different tabs is missing.
Here are my layouts:
General Tab layout
<TabHost
android:id="@android:id/tabhost"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="1">
<LinearLayout
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<TabWidget
android:id="@android:id/tabs"
android:layout_width="fill_parent"
android:layout_height="wrap_content" />
<FrameLayout
android:id="@android:id/tabcontent"
android:layout_width="fill_parent"
android:layout_height="wrap_content" />
</LinearLayout>
</TabHost>
<include layout="@layout/menu_back_only" />
</LinearLayout>
Selectos
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item
android:drawable="@drawable/menu_home"
android:state_selected="true" />
<item
android:drawable="@drawable/menu_logout" />
</selector>
And this is, how it looks right now:
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
好吧,看来手机(HTC Legend)产生了错误。找到此线程:单击并设置目标 SDK 版本确实有效。愚蠢的!
Ok, it seems, as if the mobile (HTC Legend) produces the error. Found this thread: Click and setting the target SDK version really does the trick. Stupid!