是的,Android按钮可以实现边框渐变效果。你可以通过使用Selector和ShapeDrawable来定义按钮的不同状态(如按下、正常、选中等),并在ShapeDrawable中设置GradientDrawable来实现边框渐变效果。以下是一个示例代码:
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_pressed="true">
<shape android:shape="rectangle">
<solid android:color="#FF4081"/>
<stroke android:width="2dp" android:color="#FF4081"/>
<corners android:radius="8dp"/>
</shape>
</item>
<item>
<shape android:shape="rectangle">
<solid android:color="#3F51B5"/>
<stroke android:width="2dp" android:color="#3F51B5"/>
<corners android:radius="8dp"/>
</shape>
</item>
</selector>
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Gradient Border Button"
android:background="@drawable/selector_btn_border"
android:textColor="#FFFFFF"/>
通过以上代码,你可以实现一个拥有边框渐变效果的按钮。你可以根据自己的需求调整按钮的颜色、边框宽度、圆角半径等属性来实现不同的样式效果。