Android 全成型 Button
Posted
技术标签:
【中文标题】Android 全成型 Button【英文标题】:Android fully shaped Button 【发布时间】:2011-05-23 08:54:22 【问题描述】:我尝试改变一些 android 组件的形状,例如 Button 或 View。我能做的是使用 onDraw 方法为背景分配一个形状。好吧,它看起来像是重新塑造的,但触摸事件仍然可以在我定义的形状之外工作。有什么可行的方法来排除我的形状之外的触摸吗?当然,我可以检查鼠标事件的每个位置,但是对于更复杂的形状,我不知道如何检查一个点是否在形状内。 感谢您的所有回复。
西蒙
【问题讨论】:
【参考方案1】:您可以在 xml (as you can see here) 中定义形状。 例如:
drawable/sample_shape.xml:
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<gradient
android:startColor="#FFFF0000"
android:endColor="#80FF00FF"
android:angle="45"/>
<padding android:left="7dp"
android:top="7dp"
android:right="7dp"
android:bottom="7dp" />
<corners android:radius="8dp" />
</shape>
然后您可以将 xml 描述用作 ImageButton 的可绘制对象。
drawable/samplebutton.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/sample_shape" /> <!-- pressed -->
<item android:state_focused="true"
android:drawable="@drawable/sample_shape" /> <!-- focused -->
<item android:drawable="@drawable/sample_shape" /> <!-- default -->
</selector>
在您的布局文件中:
<ImageButton
android:layout_
android:layout_
android:background="@drawable/samplebutton">
</ImageButton>
【讨论】:
我当然可以那样做。但主要问题保持不变。如果我定义一个圆形,我不希望它在我的形状之外是可触摸的。对于您的示例,它在圆圈外是可触摸的。 啊,好吧,我以为 ImageButton 类会为你做这件事,但事实并非如此。很抱歉。以上是关于Android 全成型 Button的主要内容,如果未能解决你的问题,请参考以下文章
结构建模设计——Solidworks软件之特征成型中异形孔向导和线性阵列功能实战总结
结构建模设计——Solidworks软件之特征成型中异形孔向导和线性阵列功能实战总结
结构建模设计——Solidworks软件之特征成型中拉伸凸台基体与设计树应用实战总结
结构建模设计——Solidworks软件之特征成型中拉伸凸台基体与设计树应用实战总结