レイアウトに関連していると思われる Android アプリに問題があります。添付の画像を見ると、「アラート」ボタンが突き出ていて、他のボタンと同じように見えないことがわかります。イメージを既知の適切なイメージに置き換えましたが、問題は残ります。
タブホストのレイアウトが原因であることが示唆されましたが、推奨されたすべての変更が機能していません。これまでのところ、属性を 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>