1

下面显示的图像为PNG格式,具有透明背景。

我为每个项目使用了一个 TextView,它由一个 DrawableTop 图像和文本组成。我希望我的图像是透明的,但它不能正常工作。我尝试了透明度的 alpha 方法,但整个 TextView 会变亮。我只想要图像,而不是整个 TextView。

顺便说一句,我使用 TextView 而不是 LinearLayout 每个由 ImageView 和 TextView 组成的项目,因为 IDE 提示我一个警告,并且我被建议不要在我的代码中出现任何警告。

我在Android中有以下代码:

<TextView
        android:id="@+id/marketBtn"
        android:layout_width="0dp"
        android:layout_height="match_parent"
        android:layout_gravity="bottom"
        android:layout_weight="1"
        android:background="@drawable/unselected_button"
        android:drawableTop="@drawable/market_icon_0"
        android:gravity="center"
        android:paddingBottom="5dp"
        android:paddingLeft="1dp"
        android:paddingRight="1dp"
        android:paddingTop="5dp"
        android:text="@string/task_bar_lbl_market"
        android:textAppearance="?android:attr/textAppearanceSmall"
        android:textColor="#FFFFFF"
        android:textSize="13sp" />

我现在很困惑下一步该做什么。如果有任何帮助,我将不胜感激!有关更多信息,这是此错误的屏幕截图:

在此处输入图像描述

4

2 回答 2

1

使用 Button 而不是 TextView :

<Button
        android:id="@+id/marketBtn"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_above="@+id/show"
        android:layout_alignLeft="@+id/name"
        android:layout_marginBottom="36dp"
        android:background="@drawable/unselected_button"
        android:drawableTop="@drawable/market_icon_0"
        android:text="@string/task_bar_lbl_market"
        android:textColor="#FFFFFF"
        android:textStyle="bold" />
于 2013-08-08T07:44:11.600 回答
0

您必须结合 background 和 drawableTop 样式。

您不需要背景透明的图像。
您可以使用#ARGB [int alpha,int red,int green,int blue]

    <item name="android:background">#0000</item>
    <item name="android:drawableTop">@drawable/btn_setting</item>
于 2014-02-08T00:22:17.017 回答