Textview DrawableTop中的透明图像未正确显示

时间:2013-08-08 07:39:27

标签: android textview

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

我使用了每个项目的TextView,它包含一个DrawableTop图像和Text。我希望我的图像透明,但它无法正常工作。我尝试了透明度的alpha方法,但整个TextView都会变亮。我只想要图像,而不是整个TextView。

顺便说一句,我使用TextView而不是每个项目包含ImageView和TextView的LinearLayout,因为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" />

我现在很困惑接下来要做什么。如果有任何帮助,我将不胜感激!有关详细信息,请参阅此错误的屏幕截图:

enter image description here

2 个答案:

答案 0 :(得分: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" />

答案 1 :(得分: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>