库存按钮仅在Honeycomb上显示透明而不是实心

时间:2012-03-09 19:16:07

标签: android button transparency android-3.0-honeycomb

我在我的活动中使用标准按钮。 在使用Honeycomg的平板电脑上,按钮显示为透明(因为它们在禁用时看起来像),但它们已启用且可单击。所以它们仍然是功能性但透明的。我使用的只有一个togglebutton正确显示。 我怎样才能摆脱透明度呢? 弗兰克

Main-XML(部分内容):

<ScrollView
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@drawable/backrepeat7">
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical"
android:paddingLeft="10dip"
android:visibility="visible" >

<Button
    android:id="@+id/bt_fahrt_erfassen"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:enabled="true"
    android:text="@string/bt_fahrt_erfassen"
    android:visibility="visible" >
</Button>

Backrepeat7.xml:

<bitmap xmlns:android="http://schemas.android.com/apk/res/android" android:src="@drawable/background" android:tileMode="repeat"/>

0 个答案:

没有答案