gpt4 book ai didi

android - Textview DrawableTop 中的透明图像无法正确显示

转载 作者:行者123 更新时间:2023-11-30 03:26:37 24 4
gpt4 key购买 nike

下图为PNG格式,背景透明。

我为每个项目使用了一个 TextView,它由 DrawableTop 图像和文本组成。我希望我的图像是透明的,但它不能正常工作。我尝试了透明度的 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

最佳答案

使用 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" />

关于android - Textview DrawableTop 中的透明图像无法正确显示,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18120484/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com