我试图创建一个既透明又有角半径的按钮。角落透明度比按钮的其余部分更多。如何防止它?我发布了它的图像。
https://drive.google.com/file/d/0B8Yekz-VsuhmQzdQY0lfZHFONEU/view?usp=sharing`
<Button
android:layout_width="60pt"
android:layout_height="wrap_content"
android:layout_weight="1"
android:background="@drawable/main_button_shapes"
android:text="@string/get_now"
android:textColor="@color/white"
android:layout_margin="10dp"
android:textStyle="bold" />
<resources>
<color name="mediumblue">#990000CD</color>
<color name="white">#ffffff</color></resources>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
<corners android:radius="30dp" />
<solid android:color="@color/mediumblue"/>
</shape>`
答案 0 :(得分:3)
问题最简单的方法是创建ImageButtons。做你的imagebutton的背景图片。然后将您的图像添加到可绘制文件夹中。
然后使用它:
<ImageButton
android:id="@+id/mybutton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@null"
android:src="@drawable/mybuttonbackimage" />
不要忘记使用android:background =“@ null”来获得按钮的透明度。
答案 1 :(得分:0)
您可以使用以下命令创建XML
var adata = "<cfoutput>#lagtime#</cfoutput>";
然后像这样使用这个XML:
<corners android:radius="15dp"/>
<solid android:color="@color/your_color"/>