下面显示的图像为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" />
我现在很困惑下一步该做什么。如果有任何帮助,我将不胜感激!有关更多信息,这是此错误的屏幕截图: