当使用小gif作为布局的背景图块时,我发现我的按钮看起来是透明的,这不是我想要的,我也没有设置任何透明度参数(除非背景gif是透明的? )
我的XML是:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:weightSum="2"
android:background="@drawable/backgroundrepeat"
>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:scrollbars="vertical"
android:id="@+id/scrollview1"
android:layout_weight="2"
android:layout_marginLeft="20dp"
android:layout_marginRight="20dp">
<TextView
android:layout_width="fill_parent"
android:layout_height="match_parent"
android:id="@+id/textview"
android:scrollbars="vertical"
android:textColor="@android:color/black"
/>
</ScrollView>
<Button android:text="Connect To Phidget" android:id="@+id/connect_button" android:layout_width="match_parent"
android:layout_height="wrap_content"
android:enabled="false"
android:layout_weight="0"
android:layout_marginLeft="20dp"
android:layout_marginRight="20dp"
android:background="@null"
></Button>
</LinearLayout>
可绘制的瓷砖是:
<?xml version="1.0" encoding="utf-8"?>
<bitmap xmlns:android="http://schemas.android.com/apk/res/android"
android:src="@drawable/original10"
android:tileMode="repeat"
/>
有人可以帮忙吗?感谢
答案 0 :(得分:3)
根据Android开发者文档,使用GIF图像非常clearly stated 气馁。
虽然他们没有详细说明原因 - 我假设由于其多层次性质。但是我玩了GIF图像并遇到了类似你的错误。
因此我建议您将GIF图像导出为PNG并尝试使用它。您可以使用任何工具,如Gimp或IrfanViewer。
答案 1 :(得分:1)
确定。删除标签:
android:background="@null"
这使你的描述方式透明。
答案 2 :(得分:0)
在按钮
中添加此标记android:background="@android:drawable/btn_default"