圆形角落按钮与背景颜色在android中

时间:2011-03-23 04:23:04

标签: android android-xml

我需要在android中使用背景颜色变化进行圆形角落按钮。

我怎么能这样做?

非常感谢链接/代码示例。

2 个答案:

答案 0 :(得分:38)

您想要使用Android的Shape Drawables。 http://developer.android.com/guide/topics/resources/drawable-resource.html#Shape

抽拉/ cool_button_background.xml

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
    android:shape="rectangle">
    <corners
        android:radius="@dimen/corner_radius" />
    <gradient
        android:angle="270"
        android:startColor="@color/almost_white"
        android:endColor="@color/somewhat_gray"
        android:type="linear" />
</shape>

然后你必须创建一个可从那些形状drawables中抽出的“选择器”。这使您可以根据状态使按钮显示不同。 IE:按下,专注,等等 http://developer.android.com/guide/topics/resources/drawable-resource.html#StateList

抽拉/ cool_button.xml

<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
    <item android:state_pressed="true"
        android:drawable="@drawable/cool_inner_press_bottom" />
    <item android:state_focused="true" android:state_enabled="true"
        android:state_window_focused="true"
        android:drawable="@drawable/cool_inner_focus_bottom" />
    <item
         android:drawable="@drawable/cool_button_background" />
</selector>

奖励:您可能希望为按钮创建样式,以便在整个程序中使它们保持一致。你可以减少这一步,只需设置按钮的android:background =“@ drawable / cool_button”。

值/ styles.xml

<?xml version="1.0" encoding="utf-8"?>
<resources>
    <style name="MyCoolButton">
        <item name="android:background">@drawable/cool_button_background</item>
    </style>
</resources>

最后,按钮!

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical"
    android:background="@drawable/appwidget_bg">
    <Button
        android:id="@+id/btnAction"
        android:layout_width="wrap_content"
        android:layout_weight="wrap_content"
        style="@style/CoolButton"
        />
</LinearLayout>

答案 1 :(得分:8)

导入PorterDuff并使用setColorFilter(),如下所示

import android.graphics.PorterDuff.Mode;

Button btn = (Button) findViewById(R.id.myButton); 
btn.getBackground().setColorFilter(Color.GRAY, Mode.MULTIPLY);