是否可以创建倾斜的形状按钮?
(如从屏幕左下方到屏幕右上方的条纹形状,而不是常规的方形或矩形形状按钮)?
像这样的图像http://www.codeproject.com/KB/silverlight/SilverLightFAQPart2/9.JPG
我需要确保可点击区域也是彩色区域。
谢谢,
T恤
答案 0 :(得分:0)
你需要为此编写自己的课程。只需查看并监听onClick事件。
答案 1 :(得分:0)
尝试使用选择器作为背景。
<Button
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/hello"
android:background="@drawable/my_button"
/>
然后在drawable文件夹中创建 my_button.xml 。
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_focused="true" android:state_pressed="false" android:drawable="@drawable/focused" />
<item android:state_focused="true" android:state_pressed="true" android:drawable="@drawable/focusedpressed" />
<item android:state_focused="false" android:state_pressed="true" android:drawable="@drawable/pressed" />
<item android:drawable="@drawable/defaultbutton" />
</selector>
来源:http://www.anddev.org/tinytutcustom_button_backgrounds-better_imagebutton-t4298.html