2

开始了。我有一个按钮,其非按下状态背景为透明。按下按钮后,背景不再透明(参见图片)。我对所有图像使用九个补丁。

这是我的选择器:

<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
    <item android:drawable="@drawable/starfighterstartbtndown" android:state_pressed="true"/>
    <item android:drawable="@drawable/starfighterstartbtn"/>
</selector>

这是布局:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical" >

<ImageView
    android:id="@+id/mainMenuImage"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:scaleType="fitXY"
    android:src="@drawable/starfighter" >

</ImageView>

<RelativeLayout
    android:id="@+id/buttons"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_alignParentBottom="true"
    android:layout_marginBottom="20dp"
    android:orientation="horizontal" >

    <ImageButton
        android:id="@+id/btnStart"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentLeft="true"
        android:background="@android:color/transparent"
        android:clickable="true"
        android:hapticFeedbackEnabled="true"
        android:src="@drawable/startselector" >

    </ImageButton>

    <ImageButton
        android:id="@+id/btnExit"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentRight="true"
        android:clickable="true"
        android:src="@drawable/exitselector"
        android:background="@android:color/transparent"
        android:hapticFeedbackEnabled="true" >
    </ImageButton>

</RelativeLayout>

未点击:

未点击

点击:

已点击

我也尝试了以下方法但没有运气

button.getBackground().setAlpha(0);
button.setBackgroundColor(Color.TRANSPARENT);

还在 onClickListener() 中尝试了以下操作

view.getBackground().setAlpha(0);
view.setBackgroundColor(Color.TRANSPARENT);
button.getBackground().setAlpha(0);
button.setBackgroundColor(Color.TRANSPARENT);

仍然没有运气。祝你好运 :)

4

3 回答 3

7

要使按钮的背景在非按下状态下透明,您的选择器应如下所示:

<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
    <item android:drawable="@drawable/starfighterstartbtndown" android:state_pressed="true"/>
    <item android:drawable="@android:color/transparent"/>
</selector>

并且在 xml 中的 imageButton 声明中,应该使用选择器作为背景,并且不要将任何东西作为 imageButton 的来源:

<ImageButton
        android:id="@+id/btnStart"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentLeft="true"
        android:src="@drawable/startselector"
        android:background="@android:color/transparent"
        android:clickable="true"
        android:hapticFeedbackEnabled="true" />
于 2013-07-15T02:05:36.333 回答
0

您可以使用 Color.argb()。它需要四个 int 参数,每个参数的范围从 0 到 255。

假设你想要一个 50% alpha 的蓝色按钮:

button.setBackgroundColor(Color.argb(125, 0, 0, 255));
于 2014-02-28T16:52:58.883 回答
-1

你也可以试试这个

<ImageButton
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:background="?attr/selectableItemBackground"/>
于 2015-11-05T10:03:51.543 回答