0

我遇到了一个似乎与布局相关的 Android APP 问题。附上图片,您会看到“警报”按钮突出,看起来与其他按钮不同。我已将图像替换为已知良好的图像,但问题仍然存在。

截屏

有人建议这是因为它是 tabhost 布局,但所有建议的更改都没有奏效。到目前为止,我已经尝试将属性从 android:height 和 width 更改为“wrap_content”、“fill_parent”和“match_parent”。匹配导致另一个奇怪的空白被纠正,但这个按钮是我最后一个明显的挑战。

这是布局代码,你能告诉我问题是什么吗?

    <?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal" >

<Button
    android:id="@+id/btnSearch"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_weight="1"
    android:background="@drawable/job_tab_bar_search"
    android:focusable="false"
    android:freezesText="false"
    android:imeOptions="actionNext"
    android:longClickable="false"
    android:paddingLeft="17dp"
    android:text="Search"
    android:textColor="@color/color_text_default"
    android:textSize="12dp"
    android:visibility="visible" />

<Button
    android:id="@+id/btnHistory"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_weight="1"
    android:background="@drawable/job_tab_bar_history"
    android:paddingLeft="25dp"
    android:text="History"
    android:textColor="@color/color_text_default"
    android:textSize="12dp" />

<Button
    android:id="@+id/btnFavorites"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_weight="1"
    android:background="@drawable/job_tab_bar_favorites"
    android:paddingLeft="30dp"
    android:text="Favorites"
    android:textColor="@color/color_text_default"
    android:textSize="12dp" />

<Button
    android:id="@+id/btnAlerts"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_weight="1"
    android:background="@drawable/job_tab_bar_alerts"
    android:paddingLeft="12dp"
    android:text="Alerts"
    android:textColor="@color/color_text_default"
    android:textSize="12dp" />

</LinearLayout>

<?xml version="1.0" encoding="utf-8"?>
<TabHost xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@android:id/tabhost"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<LinearLayout
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical" >

    <FrameLayout
        android:id="@android:id/tabcontent"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_weight="0.32" >
    </FrameLayout>
    <TabWidget
        android:id="@android:id/tabs"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content" >
    </TabWidget>
</LinearLayout>
</TabHost>
4

1 回答 1

0

你会认为有人会回答,最后它是愚蠢的简单。

答案是:

使用 tabactivity 的 Tabhost 如果重新调整大小,将通过菜单项显示背景。向模式添加颜色编码(html 符号)颜色,然后使用 android:border-background 构造调用它。

于 2013-01-24T22:27:30.417 回答