Я использую стандартные кнопки в своей деятельности.
На планшетах с Honeycomg кнопки отображаются прозрачными (как они выглядят, когда они отключены), но они включены и также могут быть активированы. Таким образом, они все еще функциональны, но прозрачны. Только одна кнопка, которую я использую, отображается правильно.
Как я могу избавиться от прозрачности?
Frank
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"/>