自定义按钮,笔触中的渐变

时间:2014-10-21 07:28:12

标签: android

我可以在按钮的笔划(边框)上给出渐变颜色。 请尽快帮助我。

<item>
  <shape android:shape="rectangle">
    <corners  android:radius="5dp" />
    <solid android:color="#6053565B" />
    <size android:height="40dp"/>
    <stroke android:width="2px" android:color="#6053565B" />
  </shape>
 </item>

2 个答案:

答案 0 :(得分:0)

在这个可绘制文件夹中创建一个可绘制的形状,并将其命名为按钮

<?xml version="1.0" encoding="utf-8"?>
    <shape xmlns:android="http://schemas.android.com/apk/res/android"
      android:shape="rectangle">
      <gradient android:startColor="#FFFFFF" 
        android:endColor="#FFFFFF"
        android:angle="270" />
      <corners android:radius="3dp" />
      <stroke android:width="5px" android:color="#eecc68" />
    </shape>



  and in your .xml put like below,

<Button
        android:id="@+id/button1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignLeft="@+id/textView1"
        android:layout_below="@+id/textView1"
        android:layout_marginLeft="52dp"
        android:layout_marginTop="39dp"
        android:background="@drawable/button"
        android:text="Button" />

答案 1 :(得分:0)

This是解决您问题的方法。如果您的按钮背景是固定颜色,则可以使用此选项。我仍在使用透明按钮和渐变边框搜索相同内容。