0

假设我的应用程序中有一个如下所示的页脚,在诸如 footer.xml 之类的 XML 文件中定义:

 <LinearLayout android:id="@+id/llfooter"
        android:layout_weight="1" android:layout_width="fill_parent"
        android:orientation="horizontal" android:layout_height="0dp"
        android:visibility="visible" android:background="@drawable/fbg"
        android:weightSum="5.0" android:gravity="center"
        android:layout_margin="0dp">

        <Button android:id="@+id/home" android:layout_height="wrap_content"
            android:layout_width="wrap_content" android:layout_weight="1"
            android:background="@drawable/home" android:textColor="#FFFFFF"
            android:padding="10px"></Button>

        <Button android:id="@+id/issue" android:layout_height="wrap_content"
            android:layout_width="wrap_content" android:layout_weight="1"
            android:background="@android:drawable/ic_menu_send" android:textColor="#FFFFFF"
            android:padding="10px"></Button>

        <Button android:id="@+id/browse" android:layout_height="wrap_content"
            android:layout_width="wrap_content" android:layout_weight="1"
            android:background="@android:drawable/ic_menu_slideshow" android:textColor="#FFFFFF"
            android:padding="10px"></Button>

        <Button android:id="@+id/search" android:layout_height="wrap_content"
            android:layout_width="wrap_content" android:layout_weight="1"
            android:background="@drawable/search" android:textColor="#FFFFFF"
            android:padding="10px"></Button>

        <Button android:layout_height="wrap_content" android:id="@+id/favorite"
            android:background="@drawable/favorite" android:layout_width="wrap_content"
            android:focusable="true"
            android:clickable="true"
            android:layout_weight="1"
            android:textColor="#FFFFFF" android:padding="10px"></Button>
    </LinearLayout>

现在,问题是homeissuebrowse等都是 PNG 图标,当我点击它们时,用户无法获得触摸反馈,因为它们保持不变。

我想在按下它们时更改背景颜色(例如稍微亮一点)。我知道我可以为每个按钮写下 XML drawables() 一个,例如以下

  <selector xmlns:android="http://schemas.android.com/apk/res/android"> 
      <item android:state_focused="true" android:state_pressed="true" 
            android:drawable="@drawable/bgalt" /> 
      <item android:state_focused="false" android:state_pressed="true" 
            android:drawable="@drawable/bgalt" /> 
      <item android:drawable="@drawable/bgnorm" /> 
  </selector>

.. 但是如果我有 10 个按钮(例如,5 个用于页脚,5 个用于页眉),我应该创建其他 10 个更改背景的按钮(因此更多地使用图形编辑器和 .apk 更重,因为更多的光栅图标..)。有没有办法创建(即使在java中)更浅的颜色“onClick”和正常颜色“onRelease”,资源中每个功能只有一个图标?

有什么建议么?

提前Tnx。加博

4

2 回答 2

0

使用 ImageButton,并将 android:src 参数设置为具有透明背景的可绘制按钮,然后将 android:background 值设置为例如在选择时会改变颜色的选择器可绘制对象。

这样,您的图标就有一组可绘制对象,而一个仅用于背景的可绘制对象会根据按钮的状态而变化

于 2012-08-06T22:37:47.757 回答
0

您可以在代码中的 onTouch 中获取按钮位图并更改颜色,但这是个坏主意。选择器是最好的解决方案。

于 2012-08-06T22:39:05.193 回答